MzIdentML.FilterType.Deserialize C# (CSharp) Method

Deserialize() public static method

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

Same methods

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