![]() | QueryStringNoPoll |
Performs a write and read of a string result through as a single operation without polling for instrument errors after the read.
virtual HRESULT QueryStringNoPoll(const CString& strCommand, CString& strResult, long lTimeout = CUR_TIMEOUT) abstract; virtual HRESULT QueryStringNoPoll(const CString& strCommand, BSTR* pbstrResult, long lTimeout = CUR_TIMEOUT) abstract;
[in] Command string to send to the device.
[out] Response string read from the device.
[out] Response string read from the device.
[in] I/O timeout value in milliseconds.
Returns S_OK if successful, otherwise a failure HRESULT.
This function behaves identically to QueryString except that the device is not polled for errors after the data is read.
The following example demonstrates use of the QueryStringNoPoll function.
// CoAcme4321.cpp STDMETHODIMP Acme4321::IAcme4321_GetIdentification(BSTR* pbstrId) { HRESULT hr = S_OK; // Send ID query to device and read the response as a BSTR string hr = io.QueryStringNoPoll(_T("*IDN?"), pbstrId); return hr; }