11 implementations of IsBinderThatCanHaveRefReceiver
Microsoft.CSharp (11)
Microsoft\CSharp\RuntimeBinder\CSharpBinaryOperationBinder.cs (1)
46public bool IsBinderThatCanHaveRefReceiver => false;
Microsoft\CSharp\RuntimeBinder\CSharpConvertBinder.cs (1)
49public bool IsBinderThatCanHaveRefReceiver => false;
Microsoft\CSharp\RuntimeBinder\CSharpGetIndexBinder.cs (1)
34public bool IsBinderThatCanHaveRefReceiver => true;
Microsoft\CSharp\RuntimeBinder\CSharpGetMemberBinder.cs (1)
34public bool IsBinderThatCanHaveRefReceiver => false;
Microsoft\CSharp\RuntimeBinder\CSharpInvokeBinder.cs (1)
30public bool IsBinderThatCanHaveRefReceiver => true;
Microsoft\CSharp\RuntimeBinder\CSharpInvokeConstructorBinder.cs (1)
25public bool IsBinderThatCanHaveRefReceiver => true;
Microsoft\CSharp\RuntimeBinder\CSharpInvokeMemberBinder.cs (1)
31public bool IsBinderThatCanHaveRefReceiver => true;
Microsoft\CSharp\RuntimeBinder\CSharpIsEventBinder.cs (1)
27public bool IsBinderThatCanHaveRefReceiver => false;
Microsoft\CSharp\RuntimeBinder\CSharpSetIndexBinder.cs (1)
32public bool IsBinderThatCanHaveRefReceiver => true;
Microsoft\CSharp\RuntimeBinder\CSharpSetMemberBinder.cs (1)
30public bool IsBinderThatCanHaveRefReceiver => false;
Microsoft\CSharp\RuntimeBinder\CSharpUnaryOperationBinder.cs (1)
42public bool IsBinderThatCanHaveRefReceiver => false;
2 references to IsBinderThatCanHaveRefReceiver
Microsoft.CSharp (2)
Microsoft\CSharp\RuntimeBinder\RuntimeBinder.cs (2)
213if (!(index == 0 && p.IsBinderThatCanHaveRefReceiver)) 347if (i != 0 || !payload.IsBinderThatCanHaveRefReceiver)