11 references to Bind
Microsoft.CSharp (11)
Microsoft\CSharp\RuntimeBinder\CSharpBinaryOperationBinder.cs (1)
134return BinderHelper.Bind(this, _binder, new[] { target, arg }, _argumentInfo, errorSuggestion);
Microsoft\CSharp\RuntimeBinder\CSharpConvertBinder.cs (1)
134return BinderHelper.Bind(this, _binder, new[] { target }, null, errorSuggestion);
Microsoft\CSharp\RuntimeBinder\CSharpGetIndexBinder.cs (1)
108return BinderHelper.Bind(this, _binder, BinderHelper.Cons(target, indexes), _argumentInfo, errorSuggestion);
Microsoft\CSharp\RuntimeBinder\CSharpGetMemberBinder.cs (1)
122return BinderHelper.Bind(this, _binder, new[] { target }, _argumentInfo, errorSuggestion);
Microsoft\CSharp\RuntimeBinder\CSharpInvokeBinder.cs (1)
121return BinderHelper.Bind(this, _binder, BinderHelper.Cons(target, args), _argumentInfo, errorSuggestion);
Microsoft\CSharp\RuntimeBinder\CSharpInvokeConstructorBinder.cs (1)
94return BinderHelper.Bind(this, _binder, BinderHelper.Cons(target, args), _argumentInfo, null);
Microsoft\CSharp\RuntimeBinder\CSharpInvokeMemberBinder.cs (1)
134return BinderHelper.Bind(this, _binder, BinderHelper.Cons(target, args), _argumentInfo, errorSuggestion);
Microsoft\CSharp\RuntimeBinder\CSharpIsEventBinder.cs (1)
92return BinderHelper.Bind(this, _binder, new[] { target }, null, null);
Microsoft\CSharp\RuntimeBinder\CSharpSetIndexBinder.cs (1)
129return BinderHelper.Bind(this, _binder, BinderHelper.Cons(target, indexes, value), _argumentInfo, errorSuggestion);
Microsoft\CSharp\RuntimeBinder\CSharpSetMemberBinder.cs (1)
128return BinderHelper.Bind(this, _binder, new[] { target, value }, _argumentInfo, errorSuggestion);
Microsoft\CSharp\RuntimeBinder\CSharpUnaryOperationBinder.cs (1)
117return BinderHelper.Bind(this, _binder, new[] { target }, _argumentInfo, errorSuggestion);