ATMLModelLibrary.model.signal.basic.Noise.Deserialize C# (CSharp) Method

Deserialize() public static method

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

Same methods

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