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

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

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

Same methods

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