CSMSL.IO.MzML.IndexListType.Deserialize C# (CSharp) Méthode

Deserialize() public static méthode

Deserializes workflow markup into an IndexListType object
public static Deserialize ( string xml, IndexListType &obj, System &exception ) : bool
xml string string workflow markup to deserialize
obj IndexListType Output IndexListType object
exception System output Exception value if deserialize failed
Résultat bool
        public static bool Deserialize(string xml, out IndexListType obj, out System.Exception exception)
        {
            exception = null;
            obj = default(IndexListType);
            try
            {
                obj = Deserialize(xml);
                return true;
            }
            catch (System.Exception ex)
            {
                exception = ex;
                return false;
            }
        }

Same methods

IndexListType::Deserialize ( string xml ) : IndexListType
IndexListType::Deserialize ( string xml, IndexListType &obj ) : bool