9 references to SpecialName
Microsoft.CodeAnalysis (1)
PEWriter\MetadataWriter.cs (1)
1255result |= PropertyAttributes.SpecialName;
Microsoft.CodeAnalysis.CSharp (1)
Symbols\Metadata\PE\PEPropertySymbol.cs (1)
336isSpecialName: (mdFlags & PropertyAttributes.SpecialName) != 0,
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (2)
Attributes\AttributeTests_WellKnownAttributes.cs (2)
4766Assert.Equal(PropertyAttributes.SpecialName, flags & PropertyAttributes.SpecialName);
Microsoft.CodeAnalysis.Test.Utilities (2)
Platform\Custom\MetadataSignatureHelper.cs (2)
185if ((attributes & PropertyAttributes.SpecialName) != 0) 556if (property.Attributes.HasFlag(PropertyAttributes.SpecialName))
Microsoft.CodeAnalysis.VisualBasic (1)
Symbols\Metadata\PE\PEPropertySymbol.vb (1)
175Return (_flags And PropertyAttributes.SpecialName) <> 0
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Reflection\PropertyInfo.cs (1)
20public bool IsSpecialName => (Attributes & PropertyAttributes.SpecialName) != 0;
System.Reflection.Emit (1)
System\Reflection\Emit\PropertyBuilderImpl.cs (1)
69_attributes |= PropertyAttributes.SpecialName;