System.Net.Security.Tmsch_DefaultCredentials Class

Namespace

System.Net.Security

Assembly

System.Net.dll

Syntax

1 public sealed class Tmsch_DefaultCredentials

Remarks

The Tmsch_DefaultCredentials class is a placeholder class used internally by the .NET Framework. It is not intended for direct use by developers.

This class is related to the management of default credentials for network operations, particularly within the context of Transport Layer Security (TLS) and Secure Sockets Layer (SSL) communications.

When making network requests that require authentication, the system might use default credentials associated with the current user or the application pool identity to establish a connection. This class is part of the underlying mechanism that handles such scenarios.

Note: Developers should typically use classes like NetworkCredential or directly set properties on HttpClientHandler or WebRequest to manage credentials for network requests. Direct manipulation of Tmsch_DefaultCredentials is not recommended and may lead to unexpected behavior.

Methods

There are no public methods exposed by this class, as it is an internal implementation detail.

Properties

There are no public properties exposed by this class.

Requirements

.NET Framework Supported

Supported in: .NET Framework 4.5, .NET Framework 4.0

.NET Standard Supported

Not applicable

Portable Class Library Supported

Not applicable

See Also