다음을 통해 공유


HttpHandlerActionCollection.Add(HttpHandlerAction) 메서드

정의

HttpHandlerAction 개체를 컬렉션에 추가합니다.

public:
 void Add(System::Web::Configuration::HttpHandlerAction ^ httpHandlerAction);
public void Add (System.Web.Configuration.HttpHandlerAction httpHandlerAction);
member this.Add : System.Web.Configuration.HttpHandlerAction -> unit
Public Sub Add (httpHandlerAction As HttpHandlerAction)

매개 변수

httpHandlerAction
HttpHandlerAction

컬렉션에 추가할 HttpHandlerAction 개체입니다.

예외

추가할 HttpHandlerAction 개체가 이미 컬렉션에 있거나 컬렉션이 읽기 전용인 경우

예제

다음 코드 예제에서는 개체를 HttpHandlerAction 만들고 컬렉션에 추가하는 방법을 보여줍니다.

// Add a new HttpHandlerAction to the Handlers property HttpHandlerAction collection.
httpHandlersSection.Handlers.Add(new HttpHandlerAction(
    "Calculator.custom", 
    "Samples.Aspnet.SystemWebConfiguration.Calculator, CalculatorHandler", 
    "GET", 
    true));
' Add a new HttpHandlerAction to the Handlers property HttpHandlerAction collection.
httpHandlersSection.Handlers.Add(new HttpHandlerAction( _
    "Calculator.custom", _
    "Samples.Aspnet.SystemWebConfiguration.Calculator, CalculatorHandler", _
    "GET", _
    true))

설명

이 메서드를 사용하기 전에 개체를 HttpHandlerAction 만들고 적절한 이름 및 형식으로 초기화해야 합니다. 그런 다음 컬렉션에 방금 만든 개체를 추가할 수 있습니다.

참고

ASP.NET 처리기 어셈블리 DLL에 대 한 애플리케이션의 개인 Bin 디렉터리를 먼저 검색 한 다음 시스템 어셈블리 캐시에서 검색 합니다.

컬렉션에 동일한 Verb 속성이 Path 있는 개체가 HttpHandlerAction 포함되어서는 안됩니다.

적용 대상