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