AspNetEdit.Editor.UI.RootDesignerView.JSSerialize C# (CSharp) Метод

JSSerialize() приватный Метод

Name: Serialize Serialises a fragment of a Gecko document into ASP.NET code Arguments: string designerDocumentFragment: the Gecko document fragment Returns: the serialised document
private JSSerialize ( string args ) : string
args string
Результат string
        private string JSSerialize(string[] args)
        {
            if (args.Length != 1)
                throw new InvalidJSArgumentException ("Serialize", -1);

            return host.RootDocument.Serialize (args [0]);
        }