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

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

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

Same methods

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