共用方式為


<routing>

代表定義一組路由篩選條件的組態區段,這些篩選條件會判斷傳入訊息時所用之 Windows Communication Foundation (WCF) MessageFilter 的類型及路由表 (定義當篩選條件相符時的訊息傳送目標端點)。

<configuration>
  <system.serviceModel>
    <routing>

Syntax

<system.serviceModel>
  <routing>
    <filters>
      <filter customType="String"
              filterData="String"
              filterType="Action/Address/AddressPrefix/And/Custom/Endpoint/MatchAll/XPath"
              name="String" />
    </filters>
    <routingTables>
      <table name="String">
        <entries>
          <add endpoint="String"
               filterName="String"
               priority="Integer" />
        </entries>
      </table>
    </routingTables>
  </routing>
</system.serviceModel>

屬性和元素

下列章節說明屬性、子元素和父元素。

屬性

子元素

描述
<filters> 包含一組路由篩選條件,這些篩選條件會判斷在評估傳入訊息時將使用之 Windows Communication Foundation (WCF) MessageFilter 的類型。
<filterTables> 包含路由篩選條件與目標端點之間的對應,可指定當篩選條件符合時所使用的端點。

父元素

描述
<system.ServiceModel> 所有 WCF 組態項目的根項目。

另請參閱