Delen via


OutOfDiskSpaceException Constructors

Definition

Overloads

OutOfDiskSpaceException(String)

Initializes a new instance of the OutOfDiskSpaceException class with appropriate message.

OutOfDiskSpaceException(SerializationInfo, StreamingContext)

Initializes a new instance of the OutOfDiskSpaceException class from serialized state.

OutOfDiskSpaceException(String, Exception)

Initializes a new instance of the OutOfDiskSpaceException class with appropriate message.

OutOfDiskSpaceException(String)

Initializes a new instance of the OutOfDiskSpaceException class with appropriate message.

public OutOfDiskSpaceException (string message);
new System.Fabric.OutOfDiskSpaceException : string -> System.Fabric.OutOfDiskSpaceException
Public Sub New (message As String)

Parameters

message
String

The error message that explains the reason for this exception.

Applies to

OutOfDiskSpaceException(SerializationInfo, StreamingContext)

Initializes a new instance of the OutOfDiskSpaceException class from serialized state.

protected OutOfDiskSpaceException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Fabric.OutOfDiskSpaceException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Fabric.OutOfDiskSpaceException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

Parameters

info
SerializationInfo

Contains serialized object data about the exception being thrown.

context
StreamingContext

Contains contextual information about the source or destination.

Applies to

OutOfDiskSpaceException(String, Exception)

Initializes a new instance of the OutOfDiskSpaceException class with appropriate message.

public OutOfDiskSpaceException (string message, Exception inner);
new System.Fabric.OutOfDiskSpaceException : string * Exception -> System.Fabric.OutOfDiskSpaceException
Public Sub New (message As String, inner As Exception)

Parameters

message
String

The error message that explains the reason for this exception.

inner
Exception

The Inner Exception that provides detailed information.

Applies to