ClassGenericEventArgs<T>
Class
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
Constructors
GenericEventArgs(T)
Create new instance of
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
Operators
implicit operator GenericEventArgs<T>(T)
Declaration
cs-api-definition
public static implicit operator GenericEventArgs<T>(T value)
Parameters
value
T
Returns