次の方法で共有


CustomErrorCollection.Get メソッド

定義

指定した CustomError を取得します。

オーバーロード

Get(String)

指定したステータス コードを持つ CustomError オブジェクトを取得します。

Get(Int32)

指定したインデックスの CustomError オブジェクトを取得します。

Get(String)

指定したステータス コードを持つ CustomError オブジェクトを取得します。

public:
 System::Web::Configuration::CustomError ^ Get(System::String ^ statusCode);
public System.Web.Configuration.CustomError Get (string statusCode);
member this.Get : string -> System.Web.Configuration.CustomError
Public Function Get (statusCode As String) As CustomError

パラメーター

statusCode
String

カスタム エラーに関連付けられている HTTP ステータス コード。

戻り値

指定したステータス コードを持つ CustomError オブジェクト。

次のコード例は、指定された状態コードを持つ オブジェクトを CustomError 取得する方法を示しています。

コレクションを取得する方法については、クラス トピックの CustomErrorCollection コード例を参照してください。

// Get the error with status code 404.
CustomError customError1 = 
    customErrorsCollection["404"];
' Get the error with status code 404.
  Dim customError1 As CustomError = _
  customErrorsCollection("404")

適用対象

Get(Int32)

指定したインデックスの CustomError オブジェクトを取得します。

public:
 System::Web::Configuration::CustomError ^ Get(int index);
public System.Web.Configuration.CustomError Get (int index);
member this.Get : int -> System.Web.Configuration.CustomError
Public Function Get (index As Integer) As CustomError

パラメーター

index
Int32

CustomError オブジェクトのコレクション インデックス。

戻り値

指定したインデックスを持つ CustomError

次のコード例は、指定したコレクション インデックスで オブジェクトを CustomError 取得する方法を示しています。

コレクションを取得する方法については、クラス トピックの CustomErrorCollection コード例を参照してください。

// Get the error with collection index 0.
CustomError customError = 
    customErrorsCollection[0];
' Get the error with collection index 0.
  Dim customError As CustomError = _
  customErrorsCollection(0)

適用対象