6 [global::__DynamicallyInvokable]
9 private readonly
string _name;
11 private readonly
bool _ignoreCase;
15 [global::__DynamicallyInvokable]
18 [global::__DynamicallyInvokable]
21 return typeof(
object);
27 [global::__DynamicallyInvokable]
30 [global::__DynamicallyInvokable]
39 [global::__DynamicallyInvokable]
42 [global::__DynamicallyInvokable]
49 internal sealed
override bool IsStandardBinder =>
true;
54 [global::__DynamicallyInvokable]
57 ContractUtils.RequiresNotNull(name,
"name");
59 _ignoreCase = ignoreCase;
65 [global::__DynamicallyInvokable]
75 [global::__DynamicallyInvokable]
82 [global::__DynamicallyInvokable]
85 ContractUtils.RequiresNotNull(target,
"target");
86 ContractUtils.Requires(args ==
null || args.Length == 0,
"args");
sealed override Type ReturnType
The result type of the operation.
Represents the dynamic get member operation at the call site, providing the binding semantic and the ...
DynamicMetaObject FallbackGetMember(DynamicMetaObject target)
Performs the binding of the dynamic get member operation if the target dynamic object cannot bind.
Represents type declarations: class types, interface types, array types, value types,...
bool IgnoreCase
Gets the value indicating if the string comparison should ignore the case of the member name.
sealed override DynamicMetaObject Bind(DynamicMetaObject target, DynamicMetaObject[] args)
Performs the binding of the dynamic get member operation.
string Name
Gets the name of the member to obtain.
GetMemberBinder(string name, bool ignoreCase)
Initializes a new instance of the T:System.Dynamic.GetMemberBinder.