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

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

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

Same methods

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