NI-DAQmx .NET Framework 4.5 API Reference

DaqSystem.IsReadOrWriteLate Property

  • Updated2023-02-21
  • 1 minute(s) read
DaqSystem.IsReadOrWriteLate Property

Note: This API is now obsolete.

Determines if a hardware-timed single-point read or write operation is overdue on the current thread. The IsReadOrWriteLate property has been deprecated in favor of the WaitForNextSampleClock(Double) method.

Namespace:  NationalInstruments.DAQmx
Assembly:  NationalInstruments.DAQmx (in NationalInstruments.DAQmx.dll) Version: 20.7.45.49302

Syntax

[ObsoleteAttribute("The IsReadOrWriteLate property is deprecated. Please use the Timing.SinglePoint.WaitForNextSampleClock method instead.")]
public bool IsReadOrWriteLate { get; }
<ObsoleteAttribute("The IsReadOrWriteLate property is deprecated. Please use the Timing.SinglePoint.WaitForNextSampleClock method instead.")>
Public ReadOnly Property IsReadOrWriteLate As Boolean
	Get

Property Value

Type: Boolean
if a read or write is overdue for a hardware-timed single-point task being read from or written to in the current thread.

Exceptions

ExceptionCondition
DaqExceptionThe NI-DAQmx driver returned an error.

Remarks

The value of this property is not meaningful unless reading or writing a task that has SampleQuantityMode set to HardwareTimedSinglePoint.

This property returns information only about warnings that occur in the thread from which the property is accessed. This behavior distinguishes warnings that are caused by actions in one thread from warnings that are caused by independent actions that occur at the same time in another thread.

See Also