MzIdentML.DBSequenceType.Deserialize C# (CSharp) Method

Deserialize() public static method

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

Same methods

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