1 write to Namespace
Microsoft.CodeAnalysis (1)
Symbols\Attributes\AttributeDescription.cs (1)
27this.Namespace = @namespace;
4 references to Namespace
Microsoft.CodeAnalysis (4)
MetadataReader\PEModule.cs (2)
1463Debug.Assert(description.Namespace == "System.Diagnostics.CodeAnalysis"); 2907if (!IsTargetAttribute(metadataReader, customAttribute, description.Namespace, description.Name, out ctor, description.MatchIgnoringCase))
Symbols\Attributes\AttributeDescription.cs (1)
35get { return Namespace + "." + Name; }
Symbols\Attributes\CommonAttributeData.cs (1)
93return attributeType.Name.Equals(description.Name, options) && namespaceMatch(attributeType.ContainingNamespace, description.Namespace, options);