11 references to Namespace
Microsoft.CodeAnalysis (1)
MetadataReader\PEModule.cs (1)
3856StringHandle ns = exportedType.Namespace;
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (2)
Symbols\Metadata\PE\TypeForwarders.cs (2)
1805Assert.Equal("", reader.GetString(exportedTypeRow.Namespace)); //Empty - presumably there's enough info on the containing type. 1813Assert.Equal(expectedNamespace, reader.GetString(exportedTypeRow.Namespace));
Microsoft.CodeAnalysis.Features (1)
PdbSourceDocument\ImplementationAssemblyLookupService.cs (1)
212var foundNamespace = md.GetString(et.Namespace);
Microsoft.CodeAnalysis.Test.Utilities (1)
Metadata\MetadataValidation.cs (1)
156var ns = metadataReader.GetString(typeDef.Namespace);
Microsoft.CodeAnalysis.VisualBasic.Symbol.UnitTests (2)
SymbolsTests\Metadata\PE\TypeForwarders.vb (2)
1231Assert.Equal("", reader.GetString(exportedTypeRow.Namespace)) 'Empty - presumably there's enough info on the containing type. 1237Assert.Equal(expectedNamespace, reader.GetString(exportedTypeRow.Namespace))
Microsoft.DotNet.GenFacades (1)
GenPartialFacadeSourceGenerator.cs (1)
124yield return GetTypeName(exportedType.Namespace, exportedType.Name, reader);
System.Reflection.MetadataLoadContext (2)
System\Reflection\TypeLoading\Assemblies\Ecma\EcmaAssembly.cs (1)
95ReadOnlySpan<byte> ns = exportedType.Namespace.AsReadOnlySpan(reader);
System\Reflection\TypeLoading\Modules\Ecma\EcmaModule.GetTypeCore.cs (1)
55if (!(et.Namespace.Equals(ns, reader)))
System.Windows.Forms.Design.Tests (1)
SystemDesignMetadataReader.cs (1)
32string ns = metadataReader.GetString(type.Namespace);