11 implementations of IsBinderThatCanHaveRefReceiver
Microsoft.CSharp (11)
Microsoft\CSharp\RuntimeBinder\CSharpBinaryOperationBinder.cs (1)
45
public bool
IsBinderThatCanHaveRefReceiver
=> false;
Microsoft\CSharp\RuntimeBinder\CSharpConvertBinder.cs (1)
48
public bool
IsBinderThatCanHaveRefReceiver
=> false;
Microsoft\CSharp\RuntimeBinder\CSharpGetIndexBinder.cs (1)
33
public bool
IsBinderThatCanHaveRefReceiver
=> true;
Microsoft\CSharp\RuntimeBinder\CSharpGetMemberBinder.cs (1)
33
public bool
IsBinderThatCanHaveRefReceiver
=> false;
Microsoft\CSharp\RuntimeBinder\CSharpInvokeBinder.cs (1)
29
public bool
IsBinderThatCanHaveRefReceiver
=> true;
Microsoft\CSharp\RuntimeBinder\CSharpInvokeConstructorBinder.cs (1)
24
public bool
IsBinderThatCanHaveRefReceiver
=> true;
Microsoft\CSharp\RuntimeBinder\CSharpInvokeMemberBinder.cs (1)
30
public bool
IsBinderThatCanHaveRefReceiver
=> true;
Microsoft\CSharp\RuntimeBinder\CSharpIsEventBinder.cs (1)
26
public bool
IsBinderThatCanHaveRefReceiver
=> false;
Microsoft\CSharp\RuntimeBinder\CSharpSetIndexBinder.cs (1)
31
public bool
IsBinderThatCanHaveRefReceiver
=> true;
Microsoft\CSharp\RuntimeBinder\CSharpSetMemberBinder.cs (1)
29
public bool
IsBinderThatCanHaveRefReceiver
=> false;
Microsoft\CSharp\RuntimeBinder\CSharpUnaryOperationBinder.cs (1)
41
public bool
IsBinderThatCanHaveRefReceiver
=> false;
2 references to IsBinderThatCanHaveRefReceiver
Microsoft.CSharp (2)
Microsoft\CSharp\RuntimeBinder\RuntimeBinder.cs (2)
213
if (!(index == 0 && p.
IsBinderThatCanHaveRefReceiver
))
347
if (i != 0 || !payload.
IsBinderThatCanHaveRefReceiver
)