Class
GenericEventArgs<T>

A class for generic event arguments.

Definition

Namespace:ArtOfTest.Common

Assembly:ArtOfTest.WebAii.dll

Type Parameters:

T

The type of argument value property.

Syntax:

cs-api-definition
public class GenericEventArgs<T> : EventArgs

Inheritance: objectEventArgsGenericEventArgs<T>

Inherited Members EventArgs.Empty

Constructors

GenericEventArgs(T)

Create new instance of class.

Declaration

cs-api-definition
public GenericEventArgs(T value)

Parameters

value

T

Properties

Value

The event arguments value.

Declaration

cs-api-definition
public T Value { get; set; }

Property Value

T

Methods

ToString()

Declaration

cs-api-definition
public override string ToString()

Returns

string

Overrides object.ToString()

Operators

implicit operator GenericEventArgs<T>(T)

Declaration

cs-api-definition
public static implicit operator GenericEventArgs<T>(T value)

Parameters

value

T

Returns

GenericEventArgs<T>