ServiceThrottlingBehavior.MaxConcurrentInstances プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
同時に実行できるサービス内の InstanceContext オブジェクトの最大数を指定する値を取得または設定します。
public:
property int MaxConcurrentInstances { int get(); void set(int value); };
public int MaxConcurrentInstances { get; set; }
member this.MaxConcurrentInstances : int with get, set
Public Property MaxConcurrentInstances As Integer
プロパティ値
任意の一時点におけるサービス内の InstanceContext オブジェクトの最大数。 既定値は、 の値と の値 MaxConcurrentSessions の MaxConcurrentCalls合計です。
例
例として、ServiceThrottlingBehavior、MaxConcurrentSessions、および MaxConcurrentCalls の各プロパティを 1 に設定するアプリケーション構成ファイルから MaxConcurrentInstances を使用する方法を次のコード例に示します。 特定のアプリケーションで最適な設定については、実際の動作から判断します。
<configuration>
<appSettings>
<!-- use appSetting to configure base address provided by host -->
<add key="baseAddress" value="http://localhost:8080/ServiceMetadata" />
</appSettings>
<system.serviceModel>
<services>
<service
name="Microsoft.WCF.Documentation.SampleService"
behaviorConfiguration="Throttled" >
<host>
<baseAddresses>
<add baseAddress="http://localhost:8080/SampleService"/>
</baseAddresses>
</host>
<endpoint
address=""
binding="wsHttpBinding"
contract="Microsoft.WCF.Documentation.ISampleService"
/>
<endpoint
address="mex"
binding="mexHttpBinding"
contract="IMetadataExchange"
/>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="Throttled">
<serviceThrottling
maxConcurrentCalls="1"
maxConcurrentSessions="1"
maxConcurrentInstances="1"
/>
<serviceMetadata
httpGetEnabled="true"
httpGetUrl=""
/>
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
</configuration>
注釈
MaxConcurrentInstances プロパティは、サービス内の InstanceContext オブジェクトの最大数を表します。 MaxConcurrentInstances プロパティおよび InstanceContextMode プロパティの間の関係を覚えておくことは重要です。 InstanceContextMode が PerSession の場合、得られる値はセッションの合計数です。 InstanceContextMode が PerCall の場合、得られる値は同時呼び出し数です。 InstanceContext オブジェクトの数が最大数に達しているときに受信したメッセージは、1 つの InstanceContext オブジェクトを閉じるまで保留されます。
アプリケーション構成ファイルで serviceThrottling> 要素を<使用して、この属性の値を設定することもできます。
適用対象
.NET