ATMLModelLibrary.model.signal.basic.EventCount.Deserialize C# (CSharp) 메소드

Deserialize() 공개 정적인 메소드

Deserializes workflow markup into an EventCount object
public static Deserialize ( string input, EventCount &obj, System &exception ) : bool
input string string workflow markup to deserialize
obj EventCount Output EventCount object
exception System output Exception value if deserialize failed
리턴 bool
        public static bool Deserialize(string input, out EventCount obj, out System.Exception exception)
        {
            exception = null;
            obj = default(EventCount);
            try
            {
                obj = Deserialize(input);
                return true;
            }
            catch (System.Exception ex)
            {
                exception = ex;
                return false;
            }
        }

Same methods

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