This creates a FileUploadException with a message that includes the stream name and an exception information.

Namespace: VcClientExceptions
Assembly: VcClient (in VcClient.dll) Version: 1.0.0.0 (1.8.400.4142)

Syntax

C#
public FileUploadException(
	string streamName,
	Exception innerException
)
Visual Basic
Public Sub New ( _
	streamName As String, _
	innerException As Exception _
)
Visual C++
public:
FileUploadException(
	String^ streamName, 
	Exception^ innerException
)

Parameters

streamName
Type: String
The name of the stream for which the upload operation failed.
innerException
Type: Exception
Any exception. Most likely, this is the exception that caused the file download operation to fail.

See Also