다음을 통해 공유


authenticationModules의 <remove> 요소(네트워크 설정)

애플리케이션에서 인증 모듈을 제거합니다.

<configuration>
  <system.net>
    <authenticationModules>
      <remove>

구문

<remove
   type="authentication module name"
/>  

특성 및 요소

다음 섹션에서는 특성, 자식 요소 및 부모 요소에 대해 설명합니다.

특성

Attribute 설명
type 제거할 인증 모듈의 이름입니다.

자식 요소

없음

부모 요소

요소 설명
authenticationModules 네트워크 요청을 인증하는 데 사용되는 모듈을 지정합니다.

설명

remove 요소는 구성 파일 또는 구성 계층의 상위 수준에서 이전에 정의된 인증 모듈을 제거합니다.

type 특성의 값은 유효한 클래스 이름이어야 합니다.

구성 파일

이 요소는 애플리케이션 구성 파일 또는 컴퓨터 구성 파일(Machine.config)에서 사용할 수 있습니다.

예제

다음 예제에서는 인증 모듈을 제거합니다.

<configuration>  
  <system.net>  
    <authenticationModules>  
      <remove type="System.Net.NtlmClient" />  
    </authenticationModules>  
  </system.net>  
</configuration>  

참고 항목