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

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

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

Same methods

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