Table of Contents

Constructor ObjectExistsException

Namespace
Scaleout.Client
Assembly
Scaleout.Client.dll

ObjectExistsException(SerializationInfo, StreamingContext)

Deserialization constructor. Recreate an ObjectExistsException from a serialized stream.

protected ObjectExistsException(SerializationInfo info, StreamingContext context)

Parameters

info SerializationInfo

a SerializationInfo object holding the serialized state of the ObjectExistsException.

context StreamingContext

a StreamingContext object providing context about the serialization operation.

ObjectExistsException(string, int, string)

Create a new ObjectExistsException.

public ObjectExistsException(string operation, int errorCode, string key)

Parameters

operation string

the operation (e.g. create, read, update, delete) that failed

errorCode int

the status code returned from the ScaleOut service

key string

a human-readable representation of the key corresponding to the object on which the failed operation was performed.

ObjectExistsException(string, string)

Create a new ObjectExistsException.

public ObjectExistsException(string operation, string key)

Parameters

operation string

the operation (e.g. create, read, update, delete) that failed

key string

a human-readable representation of the key corresponding to the object on which the failed operation was performed.

ObjectExistsException(string, int, string, string)

Create a new ObjectExistsException.

public ObjectExistsException(string operation, int errorCode, string key, string message)

Parameters

operation string

the operation (e.g. create, read, update, delete) that failed

errorCode int

the status code returned from the ScaleOut service

key string

a human-readable representation of the key corresponding to the object on which the failed operation was performed.

message string

a message describing this exception

ObjectExistsException(string, string, string)

Create a new ObjectExistsException.

public ObjectExistsException(string operation, string key, string message)

Parameters

operation string

the operation (e.g. create, read, update, delete) that failed

key string

a human-readable representation of the key corresponding to the object on which the failed operation was performed.

message string

a message describing this exception

ObjectExistsException(string, int, string, string, Exception)

Create a new ObjectExistsException.

public ObjectExistsException(string operation, int errorCode, string key, string message, Exception innerException)

Parameters

operation string

the operation (e.g. create, read, update, delete) that failed

errorCode int

the status code returned from the ScaleOut service

key string

a human-readable representation of the key corresponding to the object on which the failed operation was performed.

message string

a message describing this exception

innerException Exception

an underlying Exception which caused this ScaleoutException to be thrown.

ObjectExistsException(string, string, string, Exception)

Create a new ObjectExistsException.

public ObjectExistsException(string operation, string key, string message, Exception innerException)

Parameters

operation string

the operation (e.g. create, read, update, delete) that failed

key string

a human-readable representation of the key corresponding to the object on which the failed operation was performed.

message string

a message describing this exception

innerException Exception

an underlying Exception which caused this ScaleoutException to be thrown.