ATMLModelLibrary.model.equipment.MatrixSwitch.Deserialize C# (CSharp) Метод

Deserialize() публичный статический Метод

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

Same methods

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