MzIdentML.AbstractContactType.Deserialize C# (CSharp) Method

Deserialize() public static method

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

Same methods

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