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

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

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

Same methods

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