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

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

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

Same methods

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