MzIdentML.ModificationParamsType.Deserialize C# (CSharp) Method

Deserialize() public static method

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

Same methods

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