11 references to Bind
Microsoft.CSharp (11)
Microsoft\CSharp\RuntimeBinder\CSharpBinaryOperationBinder.cs (1)
130
return BinderHelper.
Bind
(this, _binder, new[] { target, arg }, _argumentInfo, errorSuggestion);
Microsoft\CSharp\RuntimeBinder\CSharpConvertBinder.cs (1)
130
return BinderHelper.
Bind
(this, _binder, new[] { target }, null, errorSuggestion);
Microsoft\CSharp\RuntimeBinder\CSharpGetIndexBinder.cs (1)
104
return BinderHelper.
Bind
(this, _binder, BinderHelper.Cons(target, indexes), _argumentInfo, errorSuggestion);
Microsoft\CSharp\RuntimeBinder\CSharpGetMemberBinder.cs (1)
118
return BinderHelper.
Bind
(this, _binder, new[] { target }, _argumentInfo, errorSuggestion);
Microsoft\CSharp\RuntimeBinder\CSharpInvokeBinder.cs (1)
117
return BinderHelper.
Bind
(this, _binder, BinderHelper.Cons(target, args), _argumentInfo, errorSuggestion);
Microsoft\CSharp\RuntimeBinder\CSharpInvokeConstructorBinder.cs (1)
90
return BinderHelper.
Bind
(this, _binder, BinderHelper.Cons(target, args), _argumentInfo, null);
Microsoft\CSharp\RuntimeBinder\CSharpInvokeMemberBinder.cs (1)
130
return BinderHelper.
Bind
(this, _binder, BinderHelper.Cons(target, args), _argumentInfo, errorSuggestion);
Microsoft\CSharp\RuntimeBinder\CSharpIsEventBinder.cs (1)
88
return BinderHelper.
Bind
(this, _binder, new[] { target }, null, null);
Microsoft\CSharp\RuntimeBinder\CSharpSetIndexBinder.cs (1)
125
return BinderHelper.
Bind
(this, _binder, BinderHelper.Cons(target, indexes, value), _argumentInfo, errorSuggestion);
Microsoft\CSharp\RuntimeBinder\CSharpSetMemberBinder.cs (1)
124
return BinderHelper.
Bind
(this, _binder, new[] { target, value }, _argumentInfo, errorSuggestion);
Microsoft\CSharp\RuntimeBinder\CSharpUnaryOperationBinder.cs (1)
113
return BinderHelper.
Bind
(this, _binder, new[] { target }, _argumentInfo, errorSuggestion);