Share via


DeploymentEncryptionException Constructors

Definition

Creates an instance of a DeploymentEncryptionException object.

Overloads

DeploymentEncryptionException()

Creates an instance of a DeploymentEncryptionException object with default values.

DeploymentEncryptionException(String)

Creates an instance of a DeploymentEncryptionException object with the specified message.

DeploymentEncryptionException(SerializationInfo, StreamingContext)

Creates an instance of a DeploymentEncryptionException object from serialization data.

DeploymentEncryptionException(String, Exception)

Creates an instance of a DeploymentEncryptionException object by using the specified message and inner exception.

DeploymentEncryptionException(String, Object[])
DeploymentEncryptionException(Exception, String, Object[])

DeploymentEncryptionException()

Creates an instance of a DeploymentEncryptionException object with default values.

public:
 DeploymentEncryptionException();
public DeploymentEncryptionException ();
Public Sub New ()

Applies to

DeploymentEncryptionException(String)

Creates an instance of a DeploymentEncryptionException object with the specified message.

public:
 DeploymentEncryptionException(System::String ^ message);
public DeploymentEncryptionException (string message);
new Microsoft.Web.Deployment.DeploymentEncryptionException : string -> Microsoft.Web.Deployment.DeploymentEncryptionException
Public Sub New (message As String)

Parameters

message
String

A string that contains detailed information about the current exception.

Applies to

DeploymentEncryptionException(SerializationInfo, StreamingContext)

Creates an instance of a DeploymentEncryptionException object from serialization data.

protected:
 DeploymentEncryptionException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected DeploymentEncryptionException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new Microsoft.Web.Deployment.DeploymentEncryptionException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> Microsoft.Web.Deployment.DeploymentEncryptionException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

Parameters

info
SerializationInfo

The SerializationInfo that contains the data needed to create an instance of this object.

context
StreamingContext

The SerializationContext used to create an instance of this object from serialization data.

Applies to

DeploymentEncryptionException(String, Exception)

Creates an instance of a DeploymentEncryptionException object by using the specified message and inner exception.

public:
 DeploymentEncryptionException(System::String ^ message, Exception ^ inner);
public DeploymentEncryptionException (string message, Exception inner);
new Microsoft.Web.Deployment.DeploymentEncryptionException : string * Exception -> Microsoft.Web.Deployment.DeploymentEncryptionException
Public Sub New (message As String, inner As Exception)

Parameters

message
String

A string that contains detailed information about the current exception.

inner
Exception

The inner exception that caused the current exception.

Applies to

DeploymentEncryptionException(String, Object[])

public:
 DeploymentEncryptionException(System::String ^ message, ... cli::array <System::Object ^> ^ parameters);
public DeploymentEncryptionException (string message, params object[] parameters);
new Microsoft.Web.Deployment.DeploymentEncryptionException : string * obj[] -> Microsoft.Web.Deployment.DeploymentEncryptionException
Public Sub New (message As String, ParamArray parameters As Object())

Parameters

message
String

A string that contains detailed information about the current exception.

parameters
Object[]

An array of parameters that provide additional details about the exception.

Applies to

DeploymentEncryptionException(Exception, String, Object[])

public:
 DeploymentEncryptionException(Exception ^ innerException, System::String ^ message, ... cli::array <System::Object ^> ^ parameters);
public DeploymentEncryptionException (Exception innerException, string message, params object[] parameters);
new Microsoft.Web.Deployment.DeploymentEncryptionException : Exception * string * obj[] -> Microsoft.Web.Deployment.DeploymentEncryptionException
Public Sub New (innerException As Exception, message As String, ParamArray parameters As Object())

Parameters

innerException
Exception

The inner exception that caused the current exception.

message
String

A string that contains detailed information about the current exception.

parameters
Object[]

An array of parameters that provide additional details about the exception.

Applies to