<PackageReference Include="Microsoft.CSharp" Version="4.6.0-preview4.19212.13" />

CSharpArgumentInfoFlags

Represents information about C# dynamic operations that are specific to particular arguments at a call site. Instances of this class are generated by the C# compiler.
using System; using System.ComponentModel; namespace Microsoft.CSharp.RuntimeBinder { [Flags] [EditorBrowsable(EditorBrowsableState.Never)] public enum CSharpArgumentInfoFlags { None = 0, UseCompileTimeType = 1, Constant = 2, NamedArgument = 4, IsRef = 8, IsOut = 16, IsStaticType = 32 } }