mscorlib(4.0.0.0) API with additions
|
Represents an object whose members can be dynamically added and removed at run time. More...
Public Member Functions | |
ExpandoObject () | |
Initializes a new ExpandoObject that does not have members. More... | |
![]() | |
bool | Contains (object key) |
Determines whether the T:System.Collections.IDictionary object contains an element with the specified key. More... | |
void | Add (object key, object value) |
Adds an element with the provided key and value to the T:System.Collections.IDictionary object. More... | |
void | Clear () |
Removes all elements from the T:System.Collections.IDictionary object. More... | |
new IDictionaryEnumerator | GetEnumerator () |
Returns an T:System.Collections.IDictionaryEnumerator object for the T:System.Collections.IDictionary object. More... | |
void | Remove (object key) |
Removes the element with the specified key from the T:System.Collections.IDictionary object. More... | |
Additional Inherited Members | |
![]() | |
object | this[object key] [get, set] |
Gets or sets the element with the specified key. More... | |
ICollection | Keys [get] |
Gets an T:System.Collections.ICollection object containing the keys of the T:System.Collections.IDictionary object. More... | |
ICollection | Values [get] |
Gets an T:System.Collections.ICollection object containing the values in the T:System.Collections.IDictionary object. More... | |
bool | IsReadOnly [get] |
Gets a value indicating whether the T:System.Collections.IDictionary object is read-only. More... | |
bool | IsFixedSize [get] |
Gets a value indicating whether the T:System.Collections.IDictionary object has a fixed size. More... | |
![]() | |
PropertyChangedEventHandler | PropertyChanged |
Occurs when a property value changes. More... | |
Represents an object whose members can be dynamically added and removed at run time.
Definition at line 13 of file ExpandoObject.cs.
System.Dynamic.ExpandoObject.ExpandoObject | ( | ) |
Initializes a new ExpandoObject
that does not have members.
Definition at line 543 of file ExpandoObject.cs.