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

Deserialize() public static method

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

Same methods

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