AspNetEdit.Editor.ComponentModel.Document.GetLoadedDocument C# (CSharp) 메소드

GetLoadedDocument() 공개 메소드

public GetLoadedDocument ( ) : string
리턴 string
        public string GetLoadedDocument()
        {
            if (document == null)
                throw new Exception ("The document has already been retrieved");
            //TODO: substitute all components
            string doc = document;
            document = null;
            return doc;
        }