ReportResult method
Reports the result of the operation when called on any thread.
Syntax
HRESULT retVal = object.ReportResult(hrResult, dwError, szResult);
Parameters
hrResult [in]
Type: HRESULTAn HRESULT value that indicates the result returned by the operation.
dwError [in]
Type: DWORDAn unsigned long integer value that is a protocol-specific code.
szResult [in]
Type: LPCWSTRA protocol-specific result string that should be NULL if the operation succeeded.
Remarks
Note to implementers
After your IInternetProtocolSink::ReportResult method is called, your application should call the IInternetProtocol::LockRequest method to lock the resource you are reading from the protocol handler. Then your application should call the IInternetProtocolRoot::Terminate method.
Note to callers
The call to IInternetProtocolSink::ReportResult is the last call that your pluggable protocol handler must make to the client application IInternetProtocolSink interface.