ATMLModelLibrary.model.equipment.Ethernet.Deserialize C# (CSharp) Method

Deserialize() public static method

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

Same methods

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