Inheritance: PCI
コード例 #1
0
 protected override void ControlsToData()
 {
     if (_bus == null)
         _bus = new PXI();
     base.ControlsToData();
     PXI pxi = (PXI)_bus;
     pxi.DynamicCurrent = dynamicCurrentControl.PXIBackplaneVoltages;
     pxi.PeakCurrent = peakCurrentControl.PXIBackplaneVoltages;
     pxi.memorySize = (int)edtMemorySize.Value;
     pxi.slotWeigth = (double)edtSlotWeight.Value;
     pxi.slots = (int)edtSlots.Value;
     pxi.PeakCurrent = peakCurrentControl.PXIBackplaneVoltages;
     pxi.DynamicCurrent = dynamicCurrentControl.PXIBackplaneVoltages;
     pxi.SupportedClockSources = supportedClockServiceControl.SupportedClockSources;
     pxi.slotSize = (PXISlotSize)Enum.Parse(typeof(PXISlotSize), (string)cmbSlotSize.SelectedItem);
 }
コード例 #2
0
 public static bool LoadFromFile(string fileName, out PXI obj)
 {
     Exception exception;
     return LoadFromFile(fileName, out obj, out exception);
 }
コード例 #3
0
 public static bool Deserialize(string input, out PXI obj)
 {
     Exception exception;
     return Deserialize(input, out obj, out exception);
 }
コード例 #4
0
 /// <summary>
 /// Deserializes xml markup from file into an PXI object
 /// </summary>
 /// <param name="fileName">string xml file to load and deserialize</param>
 /// <param name="obj">Output PXI object</param>
 /// <param name="exception">output Exception value if deserialize failed</param>
 /// <returns>true if this Serializer can deserialize the object; otherwise, false</returns>
 public static bool LoadFromFile(string fileName, out PXI obj, out Exception exception)
 {
     exception = null;
     obj = default(PXI);
     try
     {
         obj = LoadFromFile(fileName);
         return true;
     }
     catch (Exception ex)
     {
         exception = ex;
         return false;
     }
 }
コード例 #5
0
 /// <summary>
 /// Deserializes workflow markup into an PXI object
 /// </summary>
 /// <param name="input">string workflow markup to deserialize</param>
 /// <param name="obj">Output PXI object</param>
 /// <param name="exception">output Exception value if deserialize failed</param>
 /// <returns>true if this Serializer can deserialize the object; otherwise, false</returns>
 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;
     }
 }