다음을 통해 공유


HttpTransportBindingElement.BypassProxyOnLocal 속성

정의

로컬 주소에 대해 프록시가 무시되는지 여부를 나타내는 값을 가져오거나 설정합니다.

public:
 property bool BypassProxyOnLocal { bool get(); void set(bool value); };
public bool BypassProxyOnLocal { get; set; }
member this.BypassProxyOnLocal : bool with get, set
Public Property BypassProxyOnLocal As Boolean

속성 값

Boolean

로컬 주소에 대해 프록시가 무시되면 true이고, 그렇지 않으면 false입니다. 기본값은 false입니다.

예제

다음 예제에서는 바인딩에 대한 요청을 수행할 때 이 속성을 사용하도록 설정합니다.

HttpTransportBindingElement httpBinding = new HttpTransportBindingElement();  
httpBinding.BypassProxyOnLocal = true;  

설명

로컬 주소는 로컬 LAN 또는 인트라넷에 있는 주소입니다.

서비스 주소가 .로 시작하는 경우 WCF는 항상 프록시를 무시합니다 http://localhost. 클라이언트가 동일한 컴퓨터의 서비스와 통신할 때 프록시를 통과하도록 하려면 호스트 이름(대신 localhost)을 사용해야 합니다.

적용 대상