Monobjc.Tools.InterfaceBuilder.IBDocument.LoadFromXml C# (CSharp) Méthode

LoadFromXml() public static méthode

Loads a IBDocument from a Xml content.
public static LoadFromXml ( String content ) : IBDocument
content String The content.
Résultat 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