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

Deserialize() public static method

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

Same methods

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