public bool Equals(DocumentNameBlobHandle handle, string value, bool ignoreCase)
        {
            if (value == null)
            {
                Throw.ValueArgumentNull();
            }

            return(_reader.BlobHeap.DocumentNameEquals(handle, value, ignoreCase));
        }
 public bool Equals(DocumentNameBlobHandle handle, string value)
 {
     return(Equals(handle, value, ignoreCase: false));
 }
Exemplo n.º 3
0
 public string GetString(DocumentNameBlobHandle handle)
 {
     return(BlobHeap.GetDocumentName(handle));
 }