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

Deserialize() public static method

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

Same methods

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