MzIdentML.FragmentationType.Deserialize C# (CSharp) Method

Deserialize() public static method

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

Same methods

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