System.Dynamic.DynamicObject Members

The members of System.Dynamic.DynamicObject are listed below.

See Also: Inherited members from System.Object

Protected Constructors

Enables derived types to initialize a new instance of the System.Dynamic.DynamicObject type.

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) : bool
Documentation for this section has not yet been entered.
TryConvert(ConvertBinder, out object) : bool
Documentation for this section has not yet been entered.
TryCreateInstance(CreateInstanceBinder, object[], out object) : bool
Documentation 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) : bool
Documentation for this section has not yet been entered.
TryGetMember(GetMemberBinder, out object) : bool
Documentation for this section has not yet been entered.
TryInvoke(InvokeBinder, object[], out object) : bool
Documentation for this section has not yet been entered.
TryInvokeMember(InvokeMemberBinder, object[], out object) : bool
Documentation 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) : bool
Documentation for this section has not yet been entered.