ProcessModelComAuthenticationLevel Enumeration
Specifies the level of authentication for DCOM security.
Assembly: System.Web (in System.Web.dll)
| Member name | Description | |
|---|---|---|
| None | Specifies no authentication. This field is constant. | |
| Call | Specifies that DCOM authenticates the credentials of the client. This field is constant. DCOM authenticates the credentials of the client when the server receives the request at the beginning of each remote procedure call. | |
| Connect | Specifies that DCOM authenticates the credentials of the client. This field is constant. DCOM authenticates the credentials of the client only when the client establishes a relationship with the server. This is the default value. | |
| Default | Specifies that DCOM determines the authentication level. This field is constant. DCOM determines the authentication level using its normal security-negotiation algorithm. | |
| Pkt | Specifies that DCOM verifies that all data received is from the expected client. This field is constant. The datagram transports always use Pkt authentication. | |
| PktIntegrity | Specifies that DCOM authenticates and verifies the data transferred. This field is constant. DCOM verifies that none of the data transferred between the client and the server has been modified. | |
| PktPrivacy | Specifies that DCOM authenticates all previous levels and does encryption. This field is constant. DCOM authenticates all previous levels and encrypts the argument value of each remote procedure call. |
The ProcessModelComAuthenticationLevel enumerates the values to use when you set the ComAuthenticationLevel property.
The default is Connect.
Note |
|---|
The ProcessModelComAuthenticationLevel settings are relevant only when you use the ASP.NET process model (Internet Information Services [IIS] 5.n or compatible mode on IIS 6 only). |
The following code example shows how to get the current ComAuthenticationLevel property value and then set the ComAuthenticationLevel property to a new value of Call.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note