ATMLModelLibrary.model.equipment.PXI.Deserialize C# (CSharp) Метод

Deserialize() публичный статический Метод

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

Same methods

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