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

Deserialize() public static method

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

Same methods

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