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

Deserialize() public static méthode

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

Same methods

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