<client>
client
項目會定義用戶端可連線的端點清單。
<configuration>
<system.serviceModel>
<client>
Syntax
<system.serviceModel>
<client>
<endpoint>
</endpoint>
<metadata>
</metadata>
</client>
</system.serviceModel>
屬性和項目
下列章節說明屬性、子元素和父元素。
屬性
無
子元素
元素 | 描述 |
---|---|
<endpoint> | 包含端點元素的集合,其會指定此用戶端可連線的端點。 |
<中繼資料> | 包含處理中繼資料的設定。 |
父項目
元素 | 描述 |
---|---|
<system.serviceModel> | 所有 Windows Communication Foundation (WCF) 組態項目的根項目。 |
備註
client
區段會定義用戶端可連線的端點清單。 在用戶端區段中定義的每個端點會定義它自己的繫結、行為和合約。 它是以 name
和 contract
屬性的組合唯一識別的。 用戶端程式碼指定 name
以連線至用戶端所實作服務的端點。 如果省略 name
屬性,則端點會做為它所實作合約的預設端點。
此外,本區段也會指定處理中繼資料的設定。
範例
<client>
<endpoint address="/HelloWorld/"
bindingConfiguration="usingDefaults"
name="MyBinding"
binding="customBinding"
contract="HelloWorld">
<addressProperties actingAs="http://www.microsoft.com/TestActor"
identityData="BasicReadWrite"
identityType="Spn"
isAddressPrivate="false" />
</endpoint>
</client>