PERWAPI.StringConst.GetBlobIndex C# (CSharp) Method

GetBlobIndex() final private method

final private GetBlobIndex ( MetaDataOut md ) : uint
md MetaDataOut
return uint
        internal override sealed uint GetBlobIndex(MetaDataOut md)
        {
            if (addedToBlobHeap != md) {
                if (val == null)
                    blobIndex = md.AddToBlobHeap(strBytes);
                else
                    blobIndex = md.AddToBlobHeap(val);
                addedToBlobHeap = md;
            }
            return blobIndex;
        }