1 write to Flags
Microsoft.CSharp (1)
Microsoft\CSharp\RuntimeBinder\CSharpArgumentInfo.cs (1)
31Flags = flags;
9 references to Flags
Microsoft.CSharp (9)
Microsoft\CSharp\RuntimeBinder\BinderHelper.cs (3)
435hash = HashHelpers.Combine(hash, (int)argInfo.Flags); 466if (argInfo.Flags != otherArgInfo.Flags ||
Microsoft\CSharp\RuntimeBinder\CSharpArgumentInfo.cs (6)
46internal bool UseCompileTimeType => (Flags & CSharpArgumentInfoFlags.UseCompileTimeType) != 0; 48internal bool LiteralConstant => (Flags & CSharpArgumentInfoFlags.Constant) != 0; 50internal bool NamedArgument => (Flags & CSharpArgumentInfoFlags.NamedArgument) != 0; 52internal bool IsByRefOrOut => (Flags & (CSharpArgumentInfoFlags.IsRef | CSharpArgumentInfoFlags.IsOut)) != 0; 54internal bool IsOut => (Flags & CSharpArgumentInfoFlags.IsOut) != 0; 56internal bool IsStaticType => (Flags & CSharpArgumentInfoFlags.IsStaticType) != 0;