public sealed class UploadValidationException : IOException, ISerializable
Reference documentation and code samples for the Google Cloud Storage v1 API class UploadValidationException.
Exception thrown when an upload failed validation.
Implements
ISerializableNamespace
Google.Cloud.Storage.V1Assembly
Google.Cloud.Storage.V1.dll
Constructors
UploadValidationException(string, Object, AggregateException)
public UploadValidationException(string clientSideHash, Object uploadedObject, AggregateException additionalFailures)
Creates a new exception.
Parameters | |
---|---|
Name | Description |
clientSideHash | string The hash of the uploaded data, as computed at the client. Must not be null. |
uploadedObject | Object The object created by Google Cloud Storage. Must not be null. |
additionalFailures | AggregateException Any additional failures encountered while handling the error. May be null; if non-null, must contain at least one exception. |
Properties
AdditionalFailures
public AggregateException AdditionalFailures { get; }
A collection of additional failures following on from this one, if any. For example, if the validation mode indicates that on failure the file should be deleted, but the deletion fails, that exception would be present here. This property is either null, or returns an AggregateException containing one or more exceptions; it will never return an empty AggregateException.
Property Value | |
---|---|
Type | Description |
AggregateException |
ClientSideHash
public string ClientSideHash { get; }
The hash computed locally, in base64.
Property Value | |
---|---|
Type | Description |
string |
UploadedObject
public Object UploadedObject { get; }
The uploaded object.
Property Value | |
---|---|
Type | Description |
Object |