ATMLModelLibrary.model.common.unsignedLongArrayElement.Deserialize C# (CSharp) Méthode

Deserialize() public static méthode

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

Same methods

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