ATMLModelLibrary.model.signal.basic.NotEvent.Deserialize C# (CSharp) Method

Deserialize() public static method

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

Same methods

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