3 implementations of StaticCall
Microsoft.CSharp (3)
Microsoft\CSharp\RuntimeBinder\CSharpInvokeBinder.cs (1)
31
bool ICSharpInvokeOrInvokeMemberBinder.
StaticCall
=> _argumentInfo[0] != null && _argumentInfo[0].IsStaticType;
Microsoft\CSharp\RuntimeBinder\CSharpInvokeConstructorBinder.cs (1)
32
public bool
StaticCall
=> true;
Microsoft\CSharp\RuntimeBinder\CSharpInvokeMemberBinder.cs (1)
32
bool ICSharpInvokeOrInvokeMemberBinder.
StaticCall
=> _argumentInfo[0]?.IsStaticType == true;
3 references to StaticCall
Microsoft.CSharp (3)
Microsoft\CSharp\RuntimeBinder\BinderHelper.cs (1)
173
return parameterIndex == 0 && callPayload != null && callPayload.
StaticCall
;
Microsoft\CSharp\RuntimeBinder\RuntimeBinder.cs (2)
271
if (callOrInvoke.
StaticCall
)
690
if (payload.
StaticCall
)