11 implementations of GetArgumentInfo
Microsoft.CSharp (11)
Microsoft\CSharp\RuntimeBinder\CSharpBinaryOperationBinder.cs (1)
53CSharpArgumentInfo ICSharpBinder.GetArgumentInfo(int index) => _argumentInfo[index];
Microsoft\CSharp\RuntimeBinder\CSharpConvertBinder.cs (1)
50CSharpArgumentInfo ICSharpBinder.GetArgumentInfo(int index) => CSharpArgumentInfo.None;
Microsoft\CSharp\RuntimeBinder\CSharpGetIndexBinder.cs (1)
37CSharpArgumentInfo ICSharpBinder.GetArgumentInfo(int index) => _argumentInfo[index];
Microsoft\CSharp\RuntimeBinder\CSharpGetMemberBinder.cs (1)
37CSharpArgumentInfo ICSharpBinder.GetArgumentInfo(int index) => _argumentInfo[index];
Microsoft\CSharp\RuntimeBinder\CSharpInvokeBinder.cs (1)
43CSharpArgumentInfo ICSharpBinder.GetArgumentInfo(int index) => _argumentInfo[index];
Microsoft\CSharp\RuntimeBinder\CSharpInvokeConstructorBinder.cs (1)
30CSharpArgumentInfo ICSharpBinder.GetArgumentInfo(int index) => _argumentInfo[index];
Microsoft\CSharp\RuntimeBinder\CSharpInvokeMemberBinder.cs (1)
42public CSharpArgumentInfo GetArgumentInfo(int index) => _argumentInfo[index];
Microsoft\CSharp\RuntimeBinder\CSharpIsEventBinder.cs (1)
28CSharpArgumentInfo ICSharpBinder.GetArgumentInfo(int index) => CSharpArgumentInfo.None;
Microsoft\CSharp\RuntimeBinder\CSharpSetIndexBinder.cs (1)
37CSharpArgumentInfo ICSharpBinder.GetArgumentInfo(int index) => _argumentInfo[index];
Microsoft\CSharp\RuntimeBinder\CSharpSetMemberBinder.cs (1)
35CSharpArgumentInfo ICSharpBinder.GetArgumentInfo(int index) => _argumentInfo[index];
Microsoft\CSharp\RuntimeBinder\CSharpUnaryOperationBinder.cs (1)
45CSharpArgumentInfo ICSharpBinder.GetArgumentInfo(int index) => _argumentInfo[index];
1 reference to GetArgumentInfo
Microsoft.CSharp (1)
Microsoft\CSharp\RuntimeBinder\RuntimeBinder.cs (1)
254CSharpArgumentInfo info = payload.GetArgumentInfo(i);