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

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

public static Deserialize ( string input ) : DriverPlatformProcessor
input string
Результат DriverPlatformProcessor
        public static DriverPlatformProcessor Deserialize(string input)
        {
            StringReader stringReader = null;
            try
            {
                stringReader = new StringReader(input);
                return ((DriverPlatformProcessor)(Serializer.Deserialize(System.Xml.XmlReader.Create(stringReader))));
            }
            finally
            {
                if ((stringReader != null))
                {
                    stringReader.Dispose();
                }
            }
        }

Same methods

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