Click or drag to resize
UploadStringCompletedEventArgs Constructor (Exception, Boolean, Object)
Initializes a new instance of the System.ComponentModel.AsyncCompletedEventArgs class.

Namespace: System.Net
Assembly: CSharpXamlForHtml5.System.dll (in CSharpXamlForHtml5.System.dll.dll) Version: 1.0.0.0
Syntax
C#
public UploadStringCompletedEventArgs(
	Exception error,
	bool cancelled,
	Object userState
)

Parameters

error
Type: SystemException
Any error that occurred during the asynchronous operation.
cancelled
Type: SystemBoolean
A value indicating whether the asynchronous operation was canceled.
userState
Type: SystemObject
The optional user-supplied state object passed to the System.ComponentModel.BackgroundWorker.RunWorkerAsync(System.Object) method.
See Also