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

Deserialize() public static method

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

Same methods

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