This creates a FileUploadException with a message that includes the stream name and an exception information.
Namespace: VcClientExceptionsAssembly: VcClient (in VcClient.dll) Version: 1.0.0.0 (1.8.400.4142)
Syntax
C# |
---|
public FileUploadException(
string fileName,
string streamName,
Exception innerException
) |
Visual Basic |
---|
Public Sub New ( _
fileName As String, _
streamName As String, _
innerException As Exception _
) |
Visual C++ |
---|
public:
FileUploadException(
String^ fileName,
String^ streamName,
Exception^ innerException
) |
Parameters
- fileName
- Type: String
The name of the stream for which the upload operation failed.
- streamName
- Type: String
The name of the stream to which the file is being uploaded to.
- innerException
- Type: Exception
Any exception. Most likely, this is the exception that caused the file upload
operation to fail.
See Also