11 implementations of GetArgumentInfo
Microsoft.CSharp (11)
Microsoft\CSharp\RuntimeBinder\CSharpBinaryOperationBinder.cs (1)
54CSharpArgumentInfo ICSharpBinder.GetArgumentInfo(int index) => _argumentInfo[index];
Microsoft\CSharp\RuntimeBinder\CSharpConvertBinder.cs (1)
51CSharpArgumentInfo ICSharpBinder.GetArgumentInfo(int index) => CSharpArgumentInfo.None;
Microsoft\CSharp\RuntimeBinder\CSharpGetIndexBinder.cs (1)
38CSharpArgumentInfo ICSharpBinder.GetArgumentInfo(int index) => _argumentInfo[index];
Microsoft\CSharp\RuntimeBinder\CSharpGetMemberBinder.cs (1)
38CSharpArgumentInfo ICSharpBinder.GetArgumentInfo(int index) => _argumentInfo[index];
Microsoft\CSharp\RuntimeBinder\CSharpInvokeBinder.cs (1)
44CSharpArgumentInfo ICSharpBinder.GetArgumentInfo(int index) => _argumentInfo[index];
Microsoft\CSharp\RuntimeBinder\CSharpInvokeConstructorBinder.cs (1)
31CSharpArgumentInfo ICSharpBinder.GetArgumentInfo(int index) => _argumentInfo[index];
Microsoft\CSharp\RuntimeBinder\CSharpInvokeMemberBinder.cs (1)
43public CSharpArgumentInfo GetArgumentInfo(int index) => _argumentInfo[index];
Microsoft\CSharp\RuntimeBinder\CSharpIsEventBinder.cs (1)
29CSharpArgumentInfo ICSharpBinder.GetArgumentInfo(int index) => CSharpArgumentInfo.None;
Microsoft\CSharp\RuntimeBinder\CSharpSetIndexBinder.cs (1)
38CSharpArgumentInfo ICSharpBinder.GetArgumentInfo(int index) => _argumentInfo[index];
Microsoft\CSharp\RuntimeBinder\CSharpSetMemberBinder.cs (1)
36CSharpArgumentInfo ICSharpBinder.GetArgumentInfo(int index) => _argumentInfo[index];
Microsoft\CSharp\RuntimeBinder\CSharpUnaryOperationBinder.cs (1)
46CSharpArgumentInfo ICSharpBinder.GetArgumentInfo(int index) => _argumentInfo[index];
1 reference to GetArgumentInfo
Microsoft.CSharp (1)
Microsoft\CSharp\RuntimeBinder\RuntimeBinder.cs (1)
254CSharpArgumentInfo info = payload.GetArgumentInfo(i);