<endpointExtensions>
이 섹션에서는 새 표준 엔드포인트를 컴퓨터 또는 애플리케이션 구성 파일의 extensions 섹션에 등록합니다. ph x="1" /> 키워드를 사용하고 요소의 type
특성을 해당 엔드포인트 형식으로 설정하고, name
특성을 표준 엔드포인트의 이름으로 설정하여 표준 엔드포인트를 이 컬렉션에 추가할 수 있습니다.
다음 예제에서는 add
요소와 name
특성을 사용하여 구성 파일의 <endpointExtensions>
섹션에 표준 엔드포인트를 추가합니다.
<system.serviceModel>
<extensions>
<endpointExtensions>
<add name="udpDiscoveryEndpoint"
type="System.Discovery.UdpEndpointCollectionElement, System.Discovery.dll, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ffffffffffffffff"/>
</endpointExtensions>
</extensions>
</system.serviceModel>
표준 엔드포인트를 등록한 다음 이를 다음 예제와 같이 사용할 수 있습니다. <endpoint> 요소에서는 kind
특성이 <endpointExtensions>
섹션에 등록된 표준 엔드포인트 형식을 지정합니다. endpointConfiguration
특성은 <standardEndpoints>
섹션에 있는 표준 엔드포인트 구성 요소의 name
특성과 동일합니다.
<system.serviceModel>
<services>
<service name="Service1">
<endpoint kind="udpDiscoveryEndpoint"
endpointConfiguration="udpConfig" />
</service>
</services>
<standardEndpoints>
<udpDiscoveryEndpoint>
<standardEndpoint name="udpConfig"
multicastAddress="soap.udp://239.255.255.250:3703"
... />
</udpDiscoveryEndpoint>
</standardEndpoints>
</system.serviceModel>
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET