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

Deserialize() public static method

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

Same methods

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