Method MeasureAndPublishCurrent
- Assembly
- NationalInstruments.SemiconductorTestLibrary.Extensions.dll
MeasureAndPublishCurrent(DigitalSessionsBundle, string, out double[][])
Measures the current on the target pin(s) and immediately publishes the results using the publishedDataId passed in.
public static void MeasureAndPublishCurrent(this DigitalSessionsBundle sessionsBundle, string publishedDataId, out double[][] currentMeasurements)
Parameters
sessionsBundleDigitalSessionsBundleThe DigitalSessionsBundle object.
publishedDataIdstringThe unique data id to be used when publishing.
currentMeasurementsdouble[][]The returned current measurements.
Remarks
Use this method to save test time if the measurement results are not needed for any other operations. Otherwise, use the override for this method that returns PinSiteData.
MeasureAndPublishCurrent(DigitalSessionsBundle, string)
Measures the current on the target pin(s) and immediately publishes the results using the publishedDataId passed in.
public static PinSiteData<double> MeasureAndPublishCurrent(this DigitalSessionsBundle sessionsBundle, string publishedDataId)
Parameters
sessionsBundleDigitalSessionsBundleThe DigitalSessionsBundle object.
publishedDataIdstringThe unique data id to use when publishing.
Returns
- PinSiteData<double>
The pin-site aware current measurements.