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