| File: Microsoft\CSharp\RuntimeBinder\ICSharpInvokeOrInvokeMemberBinder.cs | Web Access |
| Project: Microsoft.CSharp.csproj (Microsoft.CSharp) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; using System.Collections.Generic; namespace Microsoft.CSharp.RuntimeBinder { internal interface ICSharpInvokeOrInvokeMemberBinder : ICSharpBinder { // Helper methods. bool StaticCall { get; } bool ResultDiscarded { get; } // Members. CSharpCallFlags Flags { get; } Type[] TypeArguments { get; } } }