CSMSL.IO.MzML.ScanSettingsType.Deserialize C# (CSharp) Метод

Deserialize() публичный статический Метод

public static Deserialize ( string xml ) : ScanSettingsType
xml string
Результат ScanSettingsType
        public static ScanSettingsType Deserialize(string xml)
        {
            System.IO.StringReader stringReader = null;
            try
            {
                stringReader = new System.IO.StringReader(xml);
                return ((ScanSettingsType)(Serializer.Deserialize(System.Xml.XmlReader.Create(stringReader))));
            }
            finally
            {
                if ((stringReader != null))
                {
                    stringReader.Dispose();
                }
            }
        }

Same methods

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