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

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

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

Same methods

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