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

Deserialize() public static method

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

Same methods

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