ATMLModelLibrary.model.equipment.DriverPlatformProcessor.Deserialize C# (CSharp) Метод

Deserialize() публичный статический Метод

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

Same methods

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