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

Deserialize() public static méthode

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

Same methods

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