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

Deserialize() public static méthode

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

Same methods

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