1 write to CustomAttributes
illink (1)
Linker\AttributeInfo.cs (1)
20
CustomAttributes
= new Dictionary<ICustomAttributeProvider, CustomAttribute[]>();
9 references to CustomAttributes
illink (9)
Linker.Steps\LinkAttributesParser.cs (1)
553
if (parameter.HasCustomAttributes || _attributeInfo.
CustomAttributes
.ContainsKey(parameter))
Linker.Steps\MarkStep.cs (1)
272
foreach (var (provider, annotations) in xmlInfo.
CustomAttributes
)
Linker\AttributeInfo.cs (3)
38
if (!
CustomAttributes
.TryGetValue(provider, out var existing))
40
CustomAttributes
.Add(provider, customAttributes);
48
CustomAttributes
[provider] = existing;
Linker\CustomAttributeSource.cs (4)
74
if (PrimaryAttributeInfo.
CustomAttributes
.TryGetValue(provider, out var annotations))
83
if (embeddedXml.
CustomAttributes
.TryGetValue(provider, out annotations))
106
if (PrimaryAttributeInfo.
CustomAttributes
.ContainsKey(provider))
112
return embeddedXml.
CustomAttributes
.ContainsKey(provider);