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

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

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

Same methods

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