<routing>

受信メッセージの評価に使用される Windows Communication Foundation (WCF) MessageFilter の種類を定義するルーティング フィルター セットと、フィルターが一致するときにメッセージを送信するターゲット エンドポイントを指定するルーティング テーブルを定義する構成セクションを表します。

configuration
  system.serviceModel
    <routing>

構文

<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 構成要素のルート要素です。

関連項目