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

Deserialize() public static méthode

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

Same methods

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