[out] String data read from the device.
ReadString
Reads string data from a device.
Syntax
Section titled “Syntax”virtual HRESULT ReadString(CString& pResult, long lTimeout = CUR_TIMEOUT) override;
virtual HRESULT ReadString(BSTR* pResult, long lTimeout = CUR_TIMEOUT) override;Parameters
Section titled “Parameters”pResult
lTimeout
[in] I/O timeout value in milliseconds.
Return value
Section titled “Return value”Returns S_OK if successful, otherwise a failure HRESULT.
Remarks
Section titled “Remarks”The ReadString function reads from the formatted I/O read buffer until an END condition or termination character is encountered.
Example
Section titled “Example”The following example demonstrates use of the ReadString function.
STDMETHODIMP Acme4321::IAcme4321_QueryData(BSTR* pbstrData){ HRESULT hr = S_OK;
// Read until END or termchar encountered hr = io.ReadString(pbstrData);
return hr;}