3 references to AttributeUsageInfo
Microsoft.CodeAnalysis (3)
MetadataReader\PEModule.cs (1)
1537usageInfo = new AttributeUsageInfo((AttributeTargets)validOn, allowMultiple, inherited);
Symbols\Attributes\AttributeUsageInfo.cs (1)
53internal static readonly AttributeUsageInfo Default = new AttributeUsageInfo(validTargets: AttributeTargets.All, allowMultiple: false, inherited: true);
Symbols\Attributes\CommonAttributeData.cs (1)
576return new AttributeUsageInfo(validOn, allowMultiple, inherited);