次の方法で共有


HttpParseException コンストラクター

定義

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

オーバーロード

HttpParseException()

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

HttpParseException(String)

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

HttpParseException(String, Exception)

指定したエラー メッセージと内部例外に対する参照を使用して、HttpParseException クラスの新しいインスタンスを初期化します。

HttpParseException(String, Exception, String, String, Int32)

コンパイルされていたソース コードに関する情報と例外が発生した行番号を使用して、HttpParseException クラスの新しいインスタンスを初期化します。

HttpParseException()

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

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

適用対象

HttpParseException(String)

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

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

パラメーター

message
String

エラーの発生時に指定する例外メッセージ。

次の例では、 コンストラクターの使用方法を HttpException 示します。 完全で動作するコード例については、概要に関するトピックを HttpParseException 参照してください。

throw new HttpParseException("This custom HtmlSelect control" +                                                  "requires child elements of the form \"MyCustomOption\"");
Throw New HttpParseException("This custom HtmlSelect control" & _ 
         "requires child elements of the form ""MyCustomOption""")

適用対象

HttpParseException(String, Exception)

指定したエラー メッセージと内部例外に対する参照を使用して、HttpParseException クラスの新しいインスタンスを初期化します。

public:
 HttpParseException(System::String ^ message, Exception ^ innerException);
public HttpParseException (string message, Exception innerException);
new System.Web.HttpParseException : string * Exception -> System.Web.HttpParseException
Public Sub New (message As String, innerException As Exception)

パラメーター

message
String

エラーの発生時に指定する例外メッセージ。

innerException
Exception

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

適用対象

HttpParseException(String, Exception, String, String, Int32)

コンパイルされていたソース コードに関する情報と例外が発生した行番号を使用して、HttpParseException クラスの新しいインスタンスを初期化します。

public:
 HttpParseException(System::String ^ message, Exception ^ innerException, System::String ^ virtualPath, System::String ^ sourceCode, int line);
public HttpParseException (string message, Exception innerException, string virtualPath, string sourceCode, int line);
new System.Web.HttpParseException : string * Exception * string * string * int -> System.Web.HttpParseException
Public Sub New (message As String, innerException As Exception, virtualPath As String, sourceCode As String, line As Integer)

パラメーター

message
String

エラーの発生時に指定する例外メッセージ。

innerException
Exception

現在の例外の原因となった例外。 innerExceptionnull でない場合は、内部例外を処理する catch ブロックで現在の例外が発生します。

virtualPath
String

例外の仮想パス。

sourceCode
String

エラーの発生時にコンパイルされていたソース コード。

line
Int32

例外が発生した行番号。

適用対象