3 implementations of ResultDiscarded
Microsoft.CSharp (3)
Microsoft\CSharp\RuntimeBinder\CSharpInvokeBinder.cs (1)
46
bool ICSharpInvokeOrInvokeMemberBinder.
ResultDiscarded
=> (_flags & CSharpCallFlags.ResultDiscarded) != 0;
Microsoft\CSharp\RuntimeBinder\CSharpInvokeConstructorBinder.cs (1)
39
bool ICSharpInvokeOrInvokeMemberBinder.
ResultDiscarded
=> false;
Microsoft\CSharp\RuntimeBinder\CSharpInvokeMemberBinder.cs (1)
52
bool ICSharpInvokeOrInvokeMemberBinder.
ResultDiscarded
=> (Flags & CSharpCallFlags.ResultDiscarded) != 0;
1 reference to ResultDiscarded
Microsoft.CSharp (1)
Microsoft\CSharp\RuntimeBinder\BinderHelper.cs (1)
262
if (action is ICSharpInvokeOrInvokeMemberBinder invoke && invoke.
ResultDiscarded
)