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

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

Deserializes workflow markup into an RunType object
public static Deserialize ( string xml, RunType &obj, System &exception ) : bool
xml string string workflow markup to deserialize
obj RunType Output RunType object
exception System output Exception value if deserialize failed
Результат bool
        public static bool Deserialize(string xml, out RunType obj, out System.Exception exception)
        {
            exception = null;
            obj = default(RunType);
            try
            {
                obj = Deserialize(xml);
                return true;
            }
            catch (System.Exception ex)
            {
                exception = ex;
                return false;
            }
        }

Same methods

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