ATMLModelLibrary.model.test.Event.Deserialize C# (CSharp) Метод

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

Deserializes workflow markup into an Event object
public static Deserialize ( string input, Event &obj, System &exception ) : bool
input string string workflow markup to deserialize
obj Event Output Event object
exception System output Exception value if deserialize failed
Результат bool
        public static bool Deserialize(string input, out Event obj, out System.Exception exception)
        {
            exception = null;
            obj = default(Event);
            try
            {
                obj = Deserialize(input);
                return true;
            }
            catch (System.Exception ex)
            {
                exception = ex;
                return false;
            }
        }

Same methods

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