1 instantiation of DocumentNameBlobHandle
System.Reflection.Metadata (1)
System\Reflection\Metadata\PortablePdb\DocumentNameBlobHandle.cs (1)
34
return new
DocumentNameBlobHandle
(heapOffset);
21 references to DocumentNameBlobHandle
System.Reflection.Metadata (20)
System\Reflection\Metadata\Ecma335\MetadataTokens.cs (2)
519
public static
DocumentNameBlobHandle
DocumentNameBlobHandle(int offset)
521
return Metadata.
DocumentNameBlobHandle
.FromOffset(offset);
System\Reflection\Metadata\Internal\BlobHeap.cs (2)
185
public string GetDocumentName(
DocumentNameBlobHandle
handle)
215
internal bool DocumentNameEquals(
DocumentNameBlobHandle
handle, string other, bool ignoreCase)
System\Reflection\Metadata\MetadataReader.cs (1)
1353
public string GetString(
DocumentNameBlobHandle
handle)
System\Reflection\Metadata\MetadataStringComparer.cs (2)
93
public bool Equals(
DocumentNameBlobHandle
handle, string value)
98
public bool Equals(
DocumentNameBlobHandle
handle, string value, bool ignoreCase)
System\Reflection\Metadata\PortablePdb\Document.cs (1)
35
public
DocumentNameBlobHandle
Name => _reader.DocumentTable.GetName(Handle);
System\Reflection\Metadata\PortablePdb\DocumentNameBlobHandle.cs (10)
19
public readonly struct DocumentNameBlobHandle : IEquatable<
DocumentNameBlobHandle
>
32
internal static
DocumentNameBlobHandle
FromOffset(int heapOffset)
37
public static implicit operator BlobHandle(
DocumentNameBlobHandle
handle)
42
public static explicit operator
DocumentNameBlobHandle
(BlobHandle handle)
59
return obj is
DocumentNameBlobHandle
documentHandle && Equals(documentHandle);
62
public bool Equals(
DocumentNameBlobHandle
other)
72
public static bool operator ==(
DocumentNameBlobHandle
left,
DocumentNameBlobHandle
right)
77
public static bool operator !=(
DocumentNameBlobHandle
left,
DocumentNameBlobHandle
right)
System\Reflection\Metadata\PortablePdb\Tables.Debug.cs (2)
42
internal
DocumentNameBlobHandle
GetName(DocumentHandle handle)
45
return
DocumentNameBlobHandle
.FromOffset(Block.PeekHeapReference(rowOffset + NameOffset, _isBlobHeapRefSizeSmall));
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\General\Ecma\MetadataExtensions.cs (1)
53
public static string GetString(this
DocumentNameBlobHandle
handle, MetadataReader reader) => reader.GetString(handle);