Class ItemEventArgs
Contains information relating to the adding of an item to the session
Inheritance
System.Object
ItemEventArgs
Namespace: MESL.SqlRace.Domain.Collections
Assembly: MESL.SqlRace.Domain.dll
Syntax
public class ItemEventArgs : EventArgs
Constructors
ItemEventArgs(SessionKey, Object)
Initialises a new instance of the ItemEventArgs class.
Declaration
public ItemEventArgs(SessionKey sessionKey, object item)
Parameters
Type | Name | Description |
---|---|---|
SessionKey | sessionKey | The session key. |
System.Object | item | The item object. |
Properties
Item
Gets the item for the event. The type of the object will depend on the item that was added.
Declaration
public object Item { get; }
Property Value
Type | Description |
---|---|
System.Object |
SessionKey
Gets the session key for the event.
Declaration
public SessionKey SessionKey { get; }
Property Value
Type | Description |
---|---|
SessionKey |