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

            return(_reader.BlobHeap.DocumentNameEquals(handle, value, ignoreCase));
        }
Example #2
0
        internal DocumentNameBlobHandle GetName(DocumentHandle handle)
        {
            int rowOffset = (handle.RowId - 1) * RowSize;

            return(DocumentNameBlobHandle.FromOffset(Block.PeekHeapReference(rowOffset + NameOffset, _isBlobHeapRefSizeSmall)));
        }
 public bool Equals(DocumentNameBlobHandle handle, string value)
 {
     return(Equals(handle, value, ignoreCase: false));
 }