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