次の方法で共有


WindowsAuthenticationElement.DefaultCredentialsHandleCacheSize プロパティ

定義

Windows 資格情報ハンドル キャッシュの既定のサイズを定義します。

public:
 property int DefaultCredentialsHandleCacheSize { int get(); void set(int value); };
[System.Configuration.ConfigurationProperty("defaultCredentialsHandleCacheSize", DefaultValue=0)]
public int DefaultCredentialsHandleCacheSize { get; set; }
[<System.Configuration.ConfigurationProperty("defaultCredentialsHandleCacheSize", DefaultValue=0)>]
member this.DefaultCredentialsHandleCacheSize : int with get, set
Public Property DefaultCredentialsHandleCacheSize As Integer

プロパティ値

Windows 資格情報ハンドル キャッシュの既定のサイズ。

属性

注釈

既定では、 の defaultCredentialsHandleCacheSize 値は 0 です。 これにより、Windows では、 ごとに HttpWebRequest個別の SSPI ハンドルが割り当てられます。

<system.net>
  <settings>
    <windowsAuthentication defaultCredentialsHandleCacheSize="0" />
  </settings>
</system.net>

この動作がパフォーマンスに影響する場合は、既定のネットワーク資格情報に 1 つのキャッシュされた SSPI 資格情報ハンドルを使用するには、0 より大きい値に設定 DefaultCredentialsHandleCacheSize します。 正確な値は、アプリケーションの要件によって異なります。 一般に、50 ~ 100 の値は、パフォーマンスの高いほとんどのアプリケーションで機能します。

適用対象