ATML1671Reader.model.mtpsi.CASSMTPSIManager.fromATML C# (CSharp) Method

fromATML() public static method

public static fromATML ( String atmlDocument ) : TestConfiguration
atmlDocument String
return TestConfiguration
        public static TestConfiguration fromATML(String atmlDocument)
        {
            XmlReader reader =  XmlReader.Create(new StringReader(atmlDocument));
            XmlSerializer serializerObj = new XmlSerializer(typeof(TestConfiguration));
            TestConfiguration testConfiguration = (TestConfiguration)serializerObj.Deserialize(reader);
            return testConfiguration;
        }
CASSMTPSIManager