次の方法で共有


SharePointCommandException コンストラクター

定義

オーバーロード

SharePointCommandException()

SharePointCommandException クラスの新しいインスタンスを初期化します。

SharePointCommandException(String)

指定したエラー メッセージを使用して、SharePointCommandException クラスの新しいインスタンスを初期化します。

SharePointCommandException(SerializationInfo, StreamingContext)

シリアル化したデータを使用して、SharePointCommandException クラスの新しいインスタンスを初期化します。

SharePointCommandException(String, Exception)

指定したエラー メッセージおよび例外の原因となった内部例外への参照を使用して、SharePointCommandException クラスの新しいインスタンスを初期化します。

SharePointCommandException(String, String, String, String)

指定したエラー メッセージ、完全な型名、および元のスタック トレースを使用して、SharePointCommandException クラスの新しいインスタンスを初期化します。

SharePointCommandException(String, String, String, String, Exception)

指定したエラー メッセージ、完全な型名、元のスタック トレース、および例外の原因となった内部例外への参照を使用して、SharePointCommandException クラスの新しいインスタンスを初期化します。

SharePointCommandException()

SharePointCommandException クラスの新しいインスタンスを初期化します。

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

適用対象

SharePointCommandException(String)

指定したエラー メッセージを使用して、SharePointCommandException クラスの新しいインスタンスを初期化します。

public:
 SharePointCommandException(System::String ^ message);
public SharePointCommandException (string message);
new Microsoft.VisualStudio.SharePoint.SharePointCommandException : string -> Microsoft.VisualStudio.SharePoint.SharePointCommandException
Public Sub New (message As String)

パラメーター

message
String

エラーを説明するメッセージ。

適用対象

SharePointCommandException(SerializationInfo, StreamingContext)

シリアル化したデータを使用して、SharePointCommandException クラスの新しいインスタンスを初期化します。

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

パラメーター

info
SerializationInfo

スローされる例外に関するシリアル化済みオブジェクト データを保持する SerializationInfo オブジェクト。

context
StreamingContext

ソースまたは転送先に関するコンテキスト情報を含む SerializationInfo オブジェクト。

適用対象

SharePointCommandException(String, Exception)

指定したエラー メッセージおよび例外の原因となった内部例外への参照を使用して、SharePointCommandException クラスの新しいインスタンスを初期化します。

public:
 SharePointCommandException(System::String ^ message, Exception ^ innerException);
public SharePointCommandException (string message, Exception innerException);
new Microsoft.VisualStudio.SharePoint.SharePointCommandException : string * Exception -> Microsoft.VisualStudio.SharePoint.SharePointCommandException
Public Sub New (message As String, innerException As Exception)

パラメーター

message
String

例外の原因を説明するエラー メッセージ。

innerException
Exception

現在の例外の原因となった例外。 パラメーターが innerException null 参照でない場合 (Nothing Visual Basic の場合)、内部例外を処理するブロックで catch 現在の例外が発生します。

適用対象

SharePointCommandException(String, String, String, String)

指定したエラー メッセージ、完全な型名、および元のスタック トレースを使用して、SharePointCommandException クラスの新しいインスタンスを初期化します。

public:
 SharePointCommandException(System::String ^ message, System::String ^ commandId, System::String ^ fullTypeName, System::String ^ originalStackTrace);
public SharePointCommandException (string message, string commandId, string fullTypeName, string originalStackTrace);
new Microsoft.VisualStudio.SharePoint.SharePointCommandException : string * string * string * string -> Microsoft.VisualStudio.SharePoint.SharePointCommandException
Public Sub New (message As String, commandId As String, fullTypeName As String, originalStackTrace As String)

パラメーター

message
String

例外の原因を説明するエラー メッセージ。

commandId
String

例外をスローしたコマンドの ID。

fullTypeName
String

例外をスローしたコマンド クラスの完全な型名。

originalStackTrace
String

vssphost4.exe プロセスの例外の元のスタック トレース。

適用対象

SharePointCommandException(String, String, String, String, Exception)

指定したエラー メッセージ、完全な型名、元のスタック トレース、および例外の原因となった内部例外への参照を使用して、SharePointCommandException クラスの新しいインスタンスを初期化します。

public:
 SharePointCommandException(System::String ^ message, System::String ^ commandId, System::String ^ fullTypeName, System::String ^ originalStackTrace, Exception ^ innerException);
public SharePointCommandException (string message, string commandId, string fullTypeName, string originalStackTrace, Exception innerException);
new Microsoft.VisualStudio.SharePoint.SharePointCommandException : string * string * string * string * Exception -> Microsoft.VisualStudio.SharePoint.SharePointCommandException
Public Sub New (message As String, commandId As String, fullTypeName As String, originalStackTrace As String, innerException As Exception)

パラメーター

message
String

例外の原因を説明するエラー メッセージ。

commandId
String

例外をスローしたコマンドの ID。

fullTypeName
String

例外をスローしたコマンド クラスの完全な型名。

originalStackTrace
String

vssphost4.exe プロセスの例外の元のスタック トレース。

innerException
Exception

現在の例外の原因となった例外。 パラメーターが innerException null 参照でない場合 (Nothing Visual Basic の場合)、内部例外を処理するブロックで catch 現在の例外が発生します。

適用対象