ATMLModelLibrary.model.signal.basic.EventCount.Deserialize C# (CSharp) Méthode

Deserialize() public static méthode

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
Résultat 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