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