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

Deserialize() public static method

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

Same methods

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