[email protected] C# (CSharp) Method

Deserialize() public static method

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

Same methods

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