MzIdentML.ParamListType.Deserialize C# (CSharp) 메소드

Deserialize() 공개 정적인 메소드

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

Same methods

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