ATMLModelLibrary.model.equipment.Register.Deserialize C# (CSharp) 메소드

Deserialize() 공개 정적인 메소드

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

Same methods

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