The
methods
of System.Dynamic.DynamicObject are listed below. For a list of all members, see the DynamicObject Members list.
See Also: Inherited members from System.Object
Public Methods
| GetDynamicMemberNames() : IEnumerable<string>
Returns the enumeration of all dynamic member names.
|
| GetMetaObject(System.Linq.Expressions.Expression) : DynamicMetaObject
Provides a System.Dynamic.DynamicMetaObject that dispatches to the dynamic virtual methods. The object can be encapsulated inside another System.Dynamic.DynamicMetaObject to provide custom behavior for individual actions. This method supports the Dynamic Language Runtime infrastructure for language implementers and it is not intended to be used directly from your code.
|
| TryBinaryOperation(BinaryOperationBinder, object, out object) : boolDocumentation for this section has not yet been entered. |
| TryConvert(ConvertBinder, out object) : boolDocumentation for this section has not yet been entered. |
| TryCreateInstance(CreateInstanceBinder, object[], out object) : boolDocumentation for this section has not yet been entered. |
| TryDeleteIndex(DeleteIndexBinder, object[]) : bool
Provides the implementation for operations that delete an object by index. This method is not intended for use in C# or Visual Basic.
|
| TryDeleteMember(DeleteMemberBinder) : bool
Provides the implementation for operations that delete an object member. This method is not intended for use in C# or Visual Basic.
|
| TryGetIndex(GetIndexBinder, object[], out object) : boolDocumentation for this section has not yet been entered. |
| TryGetMember(GetMemberBinder, out object) : boolDocumentation for this section has not yet been entered. |
| TryInvoke(InvokeBinder, object[], out object) : boolDocumentation for this section has not yet been entered. |
| TryInvokeMember(InvokeMemberBinder, object[], out object) : boolDocumentation for this section has not yet been entered. |
| TrySetIndex(SetIndexBinder, object[], object) : bool
Provides the implementation for operations that set a value by index. Classes derived from the System.Dynamic.DynamicObject class can override this method to specify dynamic behavior for operations that access objects by a specified index.
|
| TrySetMember(SetMemberBinder, object) : bool
Provides the implementation for operations that set member values. Classes derived from the System.Dynamic.DynamicObject class can override this method to specify dynamic behavior for operations such as setting a value for a property.
|
| TryUnaryOperation(UnaryOperationBinder, out object) : boolDocumentation for this section has not yet been entered. |