CustomErrorCollection.Get Method (String)

 

Gets the CustomError object with the specified status code.

Namespace:   System.Web.Configuration
Assembly:  System.Web (in System.Web.dll)

Public Function Get (
	statusCode As String
) As CustomError

Parameters

statusCode
Type: System.String

The HTTP status code associated with the custom error.

Return Value

Type: System.Web.Configuration.CustomError

The CustomError object with the specified status code.

The following code example shows how to get a CustomError object with the specified status code.

Refer to the code example in the CustomErrorCollection class topic to learn how to get the collection.

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

.NET Framework
Available since 2.0
Return to top
Show: