[This is preliminary documentation and is subject to change.]
Creates a new report and submits it for upload
to bugcollect.com.
Namespace:
bugcollectAssembly: bugcollect (in bugcollect.dll) Version: 1.0.0.0 (1.0)
Syntax
| C# |
|---|
public void Submit( string notes, Exception e, Object userState, ReportSubmissionResultHandler callback ) |
| Visual Basic (Declaration) |
|---|
Public Sub Submit ( _ notes As String, _ e As Exception, _ userState As Object, _ callback As ReportSubmissionResultHandler _ ) |
Parameters
- notes
- Type: System..::.String
Notes associated with the report.
- e
- Type: System..::.Exception
Exception object related to the report.
- userState
- Type: System..::.Object
An arbitrary object that is passed back when invoking the callback.
- callback
- Type: bugcollect..::.ReportSubmissionResultHandler
A callback to be invoked when the report submission is complete.
Remarks
When the report submission is complete the provided callback will be invoked.
Thread Safety
This method can be safely called from multiple threads.