Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
<remarks>
<format type="text/markdown"><![CDATA[

By default, Windows allocates a separate SSPI handle for each <xref:System.Net.HttpWebRequest>. If this behavior impacts performance, you can use the `DefaultCredentialsHandleCacheSize` to use a single cached SSPI credential handle for default network credentials. You can do this by setting this property value to 0. This corresponds to the following configuration setting:
By default, the value of `defaultCredentialsHandleCacheSize` is 0. This causes Windows to allocate a separate SSPI handle for each <xref:System.Net.HttpWebRequest>.

```xml
<system.net>
Expand All @@ -71,6 +71,8 @@ By default, Windows allocates a separate SSPI handle for each <xref:System.Net.H
</system.net>
```

If this behavior impacts performance, you can use the `defaultCredentialsHandleCacheSize` to use a single cached SSPI credential handle for default network credentials. You can do this by setting this property to a value greater than 0. The exact value depends on application requirements. Generally, a value between 50 and 100 works for most high performant applications.

]]></format>
</remarks>
</Docs>
Expand Down