This creates a FileUploadException with a message that includes the stream name and an optional error information.
Namespace: VcClientExceptionsAssembly: VcClient (in VcClient.dll) Version: 1.0.0.0 (1.8.400.4142)
Syntax
C# |
---|
public FileUploadException(
string fileName,
string streamName,
string error
) |
Visual Basic |
---|
Public Sub New ( _
fileName As String, _
streamName As String, _
error As String _
) |
Visual C++ |
---|
public:
FileUploadException(
String^ fileName,
String^ streamName,
String^ error
) |
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.
- error
- Type: String
Additional error message that needs to be added to the exception.
See Also