CSMSL.IO.MzML.OffsetType.Deserialize C# (CSharp) Méthode

Deserialize() public static méthode

Deserializes workflow markup into an OffsetType object
public static Deserialize ( string xml, OffsetType &obj, System &exception ) : bool
xml string string workflow markup to deserialize
obj OffsetType Output OffsetType object
exception System output Exception value if deserialize failed
Résultat bool
        public static bool Deserialize(string xml, out OffsetType obj, out System.Exception exception)
        {
            exception = null;
            obj = default(OffsetType);
            try
            {
                obj = Deserialize(xml);
                return true;
            }
            catch (System.Exception ex)
            {
                exception = ex;
                return false;
            }
        }

Same methods

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