Property | Type | Description |
---|
Method | Description | |
---|---|---|
Equals ( |
Equals 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.
|
|
TryGetIndex ( |
Tries the index of the get.
|
|
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.
|
|
TryInvoke ( |
Provides the implementation for operations that invoke an object. Classes derived from the T:System.Dynamic.DynamicObject class can override this method to specify dynamic behavior for operations such as invoking an object or a delegate.
|
|
TryInvokeMember ( |
Tries the invoke member.
|
|
TrySetIndex ( |
Tries the index of the set.
|
|
TrySetMember ( |
Tries the set member.
|
Method | Description | |
---|---|---|
BaseForwarder ( object target ) : System |
Initializes a new instance of the BaseForwarder class.
|
protected BaseForwarder ( object target ) : System | ||
target | object | The target. |
return | System |
public Equals ( |
||
other | The other. | |
return | bool |
public Equals ( object obj ) : bool | ||
obj | object | The |
return | bool |
public GetDynamicMemberNames ( ) : IEnumerable |
||
return | IEnumerable |
public TryGetIndex ( |
||
binder | The binder. | |
indexes | object | The indexes. |
result | object | The result. |
return | bool |
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 TryInvoke ( |
||
binder | Provides information about the invoke operation. | |
args | object | The arguments that are passed to the object during the invoke operation. For example, for the sampleObject(100) operation, where sampleObject is derived from the |
result | object | The result of the object invocation. |
return | bool |
public TryInvokeMember ( |
||
binder | The binder. | |
args | object | The args. |
result | object | The result. |
return | bool |
public TrySetIndex ( |
||
binder | The binder. | |
indexes | object | The indexes. |
value | object | The value. |
return | bool |
public TrySetMember ( |
||
binder | The binder. | |
value | object | The value. |
return | bool |