ATMLModelLibrary.model.signal.DME_INTERROGATION.Deserialize C# (CSharp) Method

Deserialize() public static method

public static Deserialize ( string input ) : DME_INTERROGATION
input string
return DME_INTERROGATION
        public new static DME_INTERROGATION Deserialize(string input)
        {
            System.IO.StringReader stringReader = null;
            try
            {
                stringReader = new System.IO.StringReader(input);
                return ((DME_INTERROGATION)(Serializer.Deserialize(System.Xml.XmlReader.Create(stringReader))));
            }
            finally
            {
                if ((stringReader != null))
                {
                    stringReader.Dispose();
                }
            }
        }
        

Same methods

DME_INTERROGATION::Deserialize ( System s ) : DME_INTERROGATION
DME_INTERROGATION::Deserialize ( string input, DME_INTERROGATION &obj ) : bool
DME_INTERROGATION::Deserialize ( string input, DME_INTERROGATION &obj, System &exception ) : bool