Table of Contents

Constructor NotReadyException

Namespace
Scaleout.Client
Assembly
Scaleout.Client.dll

NotReadyException(SerializationInfo, StreamingContext)

Deserialization constructor. Recreate an NotReadyException from a serialized stream.

protected NotReadyException(SerializationInfo info, StreamingContext context)

Parameters

info SerializationInfo

a SerializationInfo object holding the serialized state of the NotReadyException.

context StreamingContext

a StreamingContext object providing context about the serialization operation.

NotReadyException()

Create a new NotReadyException with default parameters.

public NotReadyException()

NotReadyException(string)

Create a new NotReadyException.

public NotReadyException(string message)

Parameters

message string

A message explaining the exception.

NotReadyException(string, string)

Create a new NotReadyException.

public NotReadyException(string operation, string message)

Parameters

operation string

The failed operation.

message string

A message explaining the exception.

NotReadyException(string, Exception)

Create a new NotReadyException.

public NotReadyException(string message, Exception innerException)

Parameters

message string

A message explaining the exception.

innerException Exception

A nested exception that caused the NotReadyException to be thrown.

NotReadyException(string, string, Exception)

Create a new NotReadyException.

public NotReadyException(string operation, string message, Exception innerException)

Parameters

operation string

The failed operation.

message string

A message explaining the exception.

innerException Exception

A nested exception that caused the NotReadyException to be thrown.