6 implementations of SecurityAttributes
Microsoft.CodeAnalysis (5)
Emit\EditAndContinue\DeletedPEMethodDefinition.cs (1)
125public IEnumerable<Cci.SecurityAttribute> SecurityAttributes
Emit\EditAndContinue\DeletedSourceMethodDefinition.cs (1)
73public IEnumerable<SecurityAttribute> SecurityAttributes => OldDefinition.SecurityAttributes;
Emit\NoPia\CommonEmbeddedMethod.cs (1)
236IEnumerable<Cci.SecurityAttribute> Cci.IMethodDefinition.SecurityAttributes =>
Emit\NoPia\VtblGap.cs (1)
144IEnumerable<Cci.SecurityAttribute> Cci.IMethodDefinition.SecurityAttributes
PEWriter\MethodDefinitionBase.cs (1)
79public IEnumerable<SecurityAttribute> SecurityAttributes => null;
Microsoft.CodeAnalysis.CSharp (1)
Emitter\Model\MethodSymbolAdapter.cs (1)
354IEnumerable<Cci.SecurityAttribute> Cci.IMethodDefinition.SecurityAttributes
3 references to SecurityAttributes
Microsoft.CodeAnalysis (3)
Emit\EditAndContinue\DeletedSourceMethodDefinition.cs (1)
73public IEnumerable<SecurityAttribute> SecurityAttributes => OldDefinition.SecurityAttributes;
PEWriter\MetadataVisitor.cs (1)
303this.Visit(method.SecurityAttributes);
PEWriter\MetadataWriter.cs (1)
2179this.PopulateDeclSecurityTableRowsFor(GetMethodDefinitionHandle(methodDef), methodDef.SecurityAttributes);