ATMLModelLibrary.model.equipment.Switching.Deserialize C# (CSharp) Method

Deserialize() public static method

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

Same methods

Switching::Deserialize ( Stream s ) : Switching
Switching::Deserialize ( string input ) : Switching
Switching::Deserialize ( string input, Switching &obj ) : bool