DeploymentEncryptionException 建構函式

定義

建立 DeploymentEncryptionException 物件的執行個體。

多載

DeploymentEncryptionException()

建立具有預設值之 DeploymentEncryptionException 物件的實例。

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

適用於

DeploymentEncryptionException(String)

使用指定的訊息建立 物件的實例 DeploymentEncryptionException

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)

參數

message
String

包含目前例外狀況詳細資訊的字串。

適用於

DeploymentEncryptionException(SerializationInfo, StreamingContext)

從序列化資料建立 物件的實例 DeploymentEncryptionException

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)

參數

info
SerializationInfo

SerializationInfo,其中包含建立這個物件實例所需的資料。

context
StreamingContext

用來從序列化資料建立這個物件的實例的 SerializationCoNtext。

適用於

DeploymentEncryptionException(String, Exception)

使用指定的訊息和內部例外狀況,建立 物件的實例 DeploymentEncryptionException

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)

參數

message
String

包含目前例外狀況詳細資訊的字串。

inner
Exception

造成目前例外狀況的內部例外狀況。

適用於

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())

參數

message
String

包含目前例外狀況詳細資訊的字串。

parameters
Object[]

參數陣列,提供例外狀況的其他詳細資料。

適用於

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())

參數

innerException
Exception

造成目前例外狀況的內部例外狀況。

message
String

包含目前例外狀況詳細資訊的字串。

parameters
Object[]

參數陣列,提供例外狀況的其他詳細資料。

適用於