GetTrailingForReads
Gets the string that is currently configured to be automatically removed from device response strings.
Syntax
Section titled “Syntax”virtual CString GetTrailingForReads() const abstract;Return value
Section titled “Return value”The string that is currently configured to be automatically removed from device response strings.
Remarks
Section titled “Remarks”See the description of the SetTrailingForReads function for more details.
Example
Section titled “Example”The following example demonstrates use of the GetTrailingForReads function.
HRESULT Acme4321::OnFinalInitialize(){ HRESULT hr = S_OK;
CString strTrailing = io.GetTrailingForReads();
return hr;}