15 references to CustomAttributes
illink (15)
Linker.Dataflow\FlowAnnotations.cs (2)
200
if (!_context.
CustomAttributes
.HasAny (provider))
202
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)
267
Context.
CustomAttributes
.PrimaryAttributeInfo.AddCustomAttributes (provider, annotations);
270
Context.
CustomAttributes
.PrimaryAttributeInfo.CustomAttributesOrigins.Add (ca, origin);
Linker\Annotations.cs (2)
572
if (!context.
CustomAttributes
.HasAny (member))
586
if (!context.
CustomAttributes
.HasAny (member))
Linker\LinkerAttributesInformation.cs (2)
37
Debug.Assert (context.
CustomAttributes
.HasAny (provider));
41
foreach (var customAttribute in context.
CustomAttributes
.GetCustomAttributes (provider)) {
Linker\MemberActionStore.cs (2)
90
foreach (var featureSwitchDefinitionAttribute in _context.
CustomAttributes
.GetCustomAttributes (property, "System.Diagnostics.CodeAnalysis", "FeatureSwitchDefinitionAttribute")) {
106
foreach (var featureGuardAttribute in _context.
CustomAttributes
.GetCustomAttributes (property, "System.Diagnostics.CodeAnalysis", "FeatureGuardAttribute")) {
Linker\UnconditionalSuppressMessageAttributeState.cs (4)
262
if (!_context.
CustomAttributes
.HasAny (provider))
265
foreach (var ca in _context.
CustomAttributes
.GetCustomAttributes (provider)) {
290
var attributes = _context.
CustomAttributes
.GetCustomAttributes (provider).
332
if (_context.
CustomAttributes
.TryGetCustomAttributeOrigin (suppression.Provider, suppression.OriginAttribute, out MessageOrigin origin))