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

Deserialize() public static method

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

Same methods

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