9 references to AttributeUsageInfo
Microsoft.CodeAnalysis (3)
MetadataReader\PEModule.cs (1)
1565usageInfo = 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)
583return new AttributeUsageInfo(validOn, allowMultiple, inherited);
Microsoft.CodeAnalysis.CSharp (6)
Symbols\Synthesized\SynthesizedEmbeddedLifetimeAnnotationAttributeSymbol.cs (1)
31new AttributeUsageInfo(AttributeTargets.Parameter, allowMultiple: false, inherited: false);
Symbols\Synthesized\SynthesizedEmbeddedNativeIntegerAttributeSymbol.cs (1)
66return new AttributeUsageInfo(
Symbols\Synthesized\SynthesizedEmbeddedNullableAttributeSymbol.cs (1)
70return new AttributeUsageInfo(
Symbols\Synthesized\SynthesizedEmbeddedNullableContextAttributeSymbol.cs (1)
54return new AttributeUsageInfo(
Symbols\Synthesized\SynthesizedEmbeddedNullablePublicOnlyAttributeSymbol.cs (1)
54return new AttributeUsageInfo(AttributeTargets.Module, allowMultiple: false, inherited: false);
Symbols\Synthesized\SynthesizedEmbeddedRefSafetyRulesAttributeSymbol.cs (1)
49return new AttributeUsageInfo(AttributeTargets.Module, allowMultiple: false, inherited: false);