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

Deserialize() public static method

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

Same methods

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