ATMLModelLibrary.model.signal.basic.PM.Deserialize C# (CSharp) Méthode

Deserialize() public static méthode

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

Same methods

PM::Deserialize ( System s ) : PM
PM::Deserialize ( string input ) : PM
PM::Deserialize ( string input, PM &obj ) : bool