[This is preliminary documentation and is subject to change.]
The wait handle is signaled when there are no more
reports pending submission.
Namespace:
bugcollectAssembly: bugcollect (in bugcollect.dll) Version: 1.0.0.0 (1.0)
Syntax
| C# |
|---|
public WaitHandle WaitPendingDone { get; } |
| Visual Basic (Declaration) |
|---|
Public ReadOnly Property WaitPendingDone As WaitHandle |
Remarks
Reports are submitted by the ReportingManager
asynchronously. Internally the ReportingManager stores the reports pending
submission in a queue. When the submission of the last report in the queue is
complete the ReportingManager will signal the WaitPendingDone event.
Applications should wait for this event to become signaled before
exiting the process or shutting down the appdomain, otherwise they risk
aborting reports pending submission.