8 references to Attributes
ILCompiler.MetadataTransform (1)
ILCompiler\Metadata\Transform.Parameter.cs (1)
36result.Flags = genParamDef.Attributes;
ILCompiler.ReadyToRun (2)
Compiler\DependencyAnalysis\ReadyToRun\TypeGenericInfoMapNode.cs (2)
59if ((genericParameter.Attributes & GenericParameterAttributes.VarianceMask) != GenericParameterAttributes.None) 62if ((genericParameter.Attributes & (GenericParameterAttributes.SpecialConstraintMask | (GenericParameterAttributes)GenericConstraints.AllowByRefLike)) != default(GenericParameterAttributes) ||
ILCompiler.TypeSystem (2)
src\runtime\src\coreclr\tools\Common\TypeSystem\Ecma\EcmaGenericParameter.cs (2)
107return (GenericVariance)(parameter.Attributes & GenericParameterAttributes.VarianceMask); 118return (GenericConstraints)(parameter.Attributes & mask);
Microsoft.CodeAnalysis (1)
MetadataReader\PEModule.cs (1)
3326flags = row.Attributes;
Microsoft.Diagnostics.DataContractReader.Legacy (1)
MetaDataImportImpl.cs (1)
813*pdwParamFlags = (uint)genericParam.Attributes;
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Types\Ecma\EcmaGenericParameterType.cs (1)
31public sealed override GenericParameterAttributes GenericParameterAttributes => GenericParameter.Attributes;