Monobjc.Tools.InterfaceBuilder.IBDocument.LoadFromXml C# (CSharp) Method

LoadFromXml() public static method

Loads a IBDocument from a Xml content.
public static LoadFromXml ( String content ) : IBDocument
content String The content.
return IBDocument
        public static IBDocument LoadFromXml(String content)
        {
            XmlReaderSettings settings = new XmlReaderSettings {CloseInput = true, DtdProcessing = DtdProcessing.Parse, XmlResolver = new IBXmlResolver()};
            using (XmlReader reader = XmlReader.Create(new StringReader(content), settings))
            {
                return LoadFromXml(reader);
            }
        }

Same methods

IBDocument::LoadFromXml ( XmlReader reader ) : IBDocument