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

Deserialize() public static méthode

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

Same methods

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