Aracılığıyla paylaş


CustomErrorCollection.Get Yöntem

Tanım

Belirtilen CustomErrordeğerini alır.

Aşırı Yüklemeler

Get(String)

CustomError Belirtilen durum koduna sahip nesneyi alır.

Get(Int32)

Belirtilen dizine CustomError sahip nesneyi alır.

Get(String)

CustomError Belirtilen durum koduna sahip nesneyi alır.

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

Parametreler

statusCode
String

Özel hatayla ilişkili HTTP durum kodu.

Döndürülenler

CustomError Belirtilen durum koduna sahip nesne.

Örnekler

Aşağıdaki kod örneği, belirtilen durum koduna sahip bir CustomError nesnenin nasıl alınacaklarını gösterir.

Koleksiyonu nasıl edineceğinizi öğrenmek için sınıf konusunun CustomErrorCollection kod örneğine bakın.

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

Şunlara uygulanır

Get(Int32)

Belirtilen dizine CustomError sahip nesneyi alır.

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

Parametreler

index
Int32

Nesnesinin CustomError koleksiyon dizini.

Döndürülenler

CustomError belirtilen dizine sahip.

Örnekler

Aşağıdaki kod örneği, belirtilen koleksiyon dizininde bir CustomError nesnenin nasıl alınacaklarını gösterir.

Koleksiyonu nasıl edineceğinizi öğrenmek için sınıf konusunun CustomErrorCollection kod örneğine bakın.

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

Şunlara uygulanır