Enterra.V8x1C.DOM.DocumentManager.GetRef C# (CSharp) Method

GetRef() public method

ПолучитьСсылку (GetRef)
public GetRef ( UUID uuid ) : DocumentRef
uuid UUID
return DocumentRef
        public DocumentRef GetRef(UUID uuid)
        {
            object ptr = GetRefInternal(uuid);

            if (ptr == null)
            {
                return null;
            }
            else
            {
                return new DocumentRef(Session, DocumentName, ptr);
            }
        }