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

Deserialize() public static method

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

Same methods

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