ATML1671Translator.model.range.Deserialize C# (CSharp) Method

Deserialize() public static method

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

Same methods

range::Deserialize ( string input, range &obj ) : bool
range::Deserialize ( Stream s ) : range
range::Deserialize ( string input ) : range