Property | Type | Description | |
---|---|---|---|
_dictionary | object>.IDictionary |
Method | Description | |
---|---|---|
Add ( object>.KeyValuePair |
Adds the specified item.
|
|
Add ( string key, object value ) : void |
Adds the specified key.
|
|
Contains ( object>.KeyValuePair |
Determines whether [contains] [the specified item].
|
|
ContainsKey ( string key ) : bool |
Determines whether the specified key contains key.
|
|
CopyTo ( object>.KeyValuePair |
Copies to.
|
|
Equals ( Dictionary other ) : bool |
Equalses the specified other.
|
|
Equals ( object obj ) : bool |
Determines whether the specified System.Object is equal to this instance.
|
|
GetDynamicMemberNames ( ) : IEnumerable |
Returns the enumeration of all dynamic member names.
|
|
GetHashCode ( ) : int |
Returns a hash code for this instance.
|
|
Remove ( object>.KeyValuePair |
Removes the specified item.
|
|
Remove ( string key ) : bool |
Removes the specified key.
|
|
ToString ( ) : string |
Returns a System.String that represents this instance.
|
|
TryGetMember ( |
Provides the implementation for operations that get member values. Classes derived from the T:System.Dynamic.DynamicObject class can override this method to specify dynamic behavior for operations such as getting a value for a property.
|
|
TryGetValue ( string key, object &value ) : bool |
Tries the get value.
|
|
TryInvokeMember ( |
Provides the implementation for operations that invoke a member. Classes derived from the T:System.Dynamic.DynamicObject class can override this method to specify dynamic behavior for operations such as calling a method.
|
|
TrySetMember ( |
Provides the implementation for operations that set member values. Classes derived from the T:System.Dynamic.DynamicObject class can override this method to specify dynamic behavior for operations such as setting a value for a property.
|
Method | Description | |
---|---|---|
BaseDictionary ( object>.IEnumerable |
Initializes a new instance of the Dictionary class.
|
|
OnPropertyChanged ( string key ) : void |
Called when [property changed].
|
|
SetProperty ( string key, object value ) : void |
Sets the property.
|
public Add ( object>.KeyValuePair |
||
item | object>.KeyValuePair | The item. |
return | void |
public Add ( string key, object value ) : void | ||
key | string | The key. |
value | object | The value. |
return | void |
protected BaseDictionary ( object>.IEnumerable |
||
dict | object>.IEnumerable | The dict. |
return | System |
public Contains ( object>.KeyValuePair |
||
item | object>.KeyValuePair | The item. |
return | bool |
public ContainsKey ( string key ) : bool | ||
key | string | The key. |
return | bool |
public CopyTo ( object>.KeyValuePair |
||
array | object>.KeyValuePair | The array. |
arrayIndex | int | Index of the array. |
return | void |
public Equals ( Dictionary other ) : bool | ||
other | Dictionary | The other. |
return | bool |
public Equals ( object obj ) : bool | ||
obj | object | The |
return | bool |
public GetDynamicMemberNames ( ) : IEnumerable |
||
return | IEnumerable |
protected OnPropertyChanged ( string key ) : void | ||
key | string | The key. |
return | void |
public Remove ( object>.KeyValuePair |
||
item | object>.KeyValuePair | The item. |
return | bool |
protected SetProperty ( string key, object value ) : void | ||
key | string | The key. |
value | object | The value. |
return | void |
public TryGetMember ( |
||
binder | Provides information about the object that called the dynamic operation. The binder.Name property provides the name of the member on which the dynamic operation is performed. For example, for the Console.WriteLine(sampleObject.SampleProperty) statement, where sampleObject is an instance of the class derived from the |
|
result | object | The result of the get operation. For example, if the method is called for a property, you can assign the property value to |
return | bool |
public TryGetValue ( string key, object &value ) : bool | ||
key | string | The key. |
value | object | The value. |
return | bool |
public TryInvokeMember ( |
||
binder | Provides information about the dynamic operation. The binder.Name property provides the name of the member on which the dynamic operation is performed. For example, for the statement sampleObject.SampleMethod(100), where sampleObject is an instance of the class derived from the |
|
args | object | The arguments that are passed to the object member during the invoke operation. For example, for the statement sampleObject.SampleMethod(100), where sampleObject is derived from the |
result | object | The result of the member invocation. |
return | bool |
public TrySetMember ( |
||
binder | Provides information about the object that called the dynamic operation. The binder.Name property provides the name of the member to which the value is being assigned. For example, for the statement sampleObject.SampleProperty = "Test", where sampleObject is an instance of the class derived from the |
|
value | object | The value to set to the member. For example, for sampleObject.SampleProperty = "Test", where sampleObject is an instance of the class derived from the |
return | bool |