Class ValueEventArg<TK, TV>
Event arguments for key collections with value changed notifications.
Inherited Members
Namespace: VivoxUnity
Assembly: VivoxUnity.dll
Syntax
public sealed class ValueEventArg<TK, TV> : EventArgs
Type Parameters
Name | Description |
---|---|
TK | The key type. |
TV | The value type. |
Constructors
ValueEventArg(TK, TV, string)
Constructor
Declaration
public ValueEventArg(TK key, TV value, string name)
Parameters
Type | Name | Description |
---|---|---|
TK | key | The key that uniquely identifies the item in the collection. |
TV | value | A value that maps to the key. |
string | name | The name of the changed property. |
Properties
Key
The key that uniquely identifies the item in the collection.
Declaration
public TK Key { get; set; }
Property Value
Type | Description |
---|---|
TK |
PropertyName
The name of the changed property.
Declaration
public string PropertyName { get; set; }
Property Value
Type | Description |
---|---|
string |
Value
A value that maps to the key.
Declaration
public TV Value { get; set; }
Property Value
Type | Description |
---|---|
TV |