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

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

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

Same methods

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