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

Deserialize() public static method

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

Same methods

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