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)
503
if (parameter.HasCustomAttributes || _attributeInfo.
CustomAttributes
.ContainsKey (parameter))
Linker.Steps\MarkStep.cs (1)
266
foreach (var (provider, annotations) in xmlInfo.
CustomAttributes
)
Linker\AttributeInfo.cs (3)
37
if (!
CustomAttributes
.TryGetValue (provider, out var existing)) {
38
CustomAttributes
.Add (provider, customAttributes);
44
CustomAttributes
[provider] = existing;
Linker\CustomAttributeSource.cs (4)
70
if (PrimaryAttributeInfo.
CustomAttributes
.TryGetValue (provider, out var annotations)) {
78
if (embeddedXml.
CustomAttributes
.TryGetValue (provider, out annotations)) {
100
if (PrimaryAttributeInfo.
CustomAttributes
.ContainsKey (provider))
106
return embeddedXml.
CustomAttributes
.ContainsKey (provider);