MzIdentML.ExternalDataType.Deserialize C# (CSharp) Method

Deserialize() public static method

public static Deserialize ( string xml ) : ExternalDataType
xml string
return ExternalDataType
        public static ExternalDataType Deserialize(string xml)
        {
            System.IO.StringReader stringReader = null;
            try
            {
                stringReader = new System.IO.StringReader(xml);
                return ((ExternalDataType)(Serializer.Deserialize(System.Xml.XmlReader.Create(stringReader))));
            }
            finally
            {
                if ((stringReader != null))
                {
                    stringReader.Dispose();
                }
            }
        }

Same methods

ExternalDataType::Deserialize ( string xml, ExternalDataType &obj ) : bool
ExternalDataType::Deserialize ( string xml, ExternalDataType &obj, System &exception ) : bool