Class DynamicData
public sealed class DynamicData : DynamicObject
- Inheritance
-
DynamicData
Constructors
Properties
Methods
- Dispose()
- Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
- GetDynamicMemberNames()
- Returns the enumeration of all dynamic member names.
- GetEnumerator()
- Returns an enumerator that iterates through the collection.
- TryConvert(ConvertBinder, out object?)
- Provides implementation for type conversion operations. Classes derived from the DynamicObject class can override this method to specify dynamic behavior for operations that convert an object from one type to another.
- TryGetMember(GetMemberBinder, out object?)
- Provides the implementation for operations that get member values. Classes derived from the DynamicObject class can override this method to specify dynamic behavior for operations such as getting a value for a property.
- TryInvokeMember(InvokeMemberBinder, object?[]?, out object?)
- Provides the implementation for operations that invoke a member. Classes derived from the DynamicObject class can override this method to specify dynamic behavior for operations such as calling a method.
- TrySetMember(SetMemberBinder, object?)
- Provides the implementation for operations that set member values. Classes derived from the DynamicObject class can override this method to specify dynamic behavior for operations such as setting a value for a property.