15 references to CustomAttributes
illink (15)
Linker.Dataflow\FlowAnnotations.cs (2)
203
if (!_context.
CustomAttributes
.HasAny(provider))
205
foreach (var attribute in _context.
CustomAttributes
.GetCustomAttributes(provider))
Linker.Steps\LinkAttributesStep.cs (1)
17
new LinkAttributesParser(Context, _documentStream, _xmlDocumentLocation).Parse(Context.
CustomAttributes
.PrimaryAttributeInfo);
Linker.Steps\MarkStep.cs (2)
273
Context.
CustomAttributes
.PrimaryAttributeInfo.AddCustomAttributes(provider, annotations);
276
Context.
CustomAttributes
.PrimaryAttributeInfo.CustomAttributesOrigins.Add(ca, origin);
Linker\Annotations.cs (2)
569
if (!context.
CustomAttributes
.HasAny(member))
584
if (!context.
CustomAttributes
.HasAny(member))
Linker\LinkerAttributesInformation.cs (2)
39
Debug.Assert(context.
CustomAttributes
.HasAny(provider));
43
foreach (var customAttribute in context.
CustomAttributes
.GetCustomAttributes(provider))
Linker\MemberActionStore.cs (2)
93
foreach (var featureSwitchDefinitionAttribute in _context.
CustomAttributes
.GetCustomAttributes(property, "System.Diagnostics.CodeAnalysis", "FeatureSwitchDefinitionAttribute"))
111
foreach (var featureGuardAttribute in _context.
CustomAttributes
.GetCustomAttributes(property, "System.Diagnostics.CodeAnalysis", "FeatureGuardAttribute"))
Linker\UnconditionalSuppressMessageAttributeState.cs (4)
286
if (!_context.
CustomAttributes
.HasAny(provider))
289
foreach (var ca in _context.
CustomAttributes
.GetCustomAttributes(provider))
316
var attributes = _context.
CustomAttributes
.GetCustomAttributes(provider).
361
if (_context.
CustomAttributes
.TryGetCustomAttributeOrigin(suppression.Provider, suppression.OriginAttribute, out MessageOrigin origin))