MzIdentML.AbstractParamType.Deserialize C# (CSharp) Method

Deserialize() public static method

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

Same methods

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