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