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

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

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

Same methods

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