AuthenticationOption Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the remote procedure call (RPC) authentication mechanism. Applicable only when the ActivationOption is set to Server
.
public enum class AuthenticationOption
[System.Serializable]
public enum AuthenticationOption
[<System.Serializable>]
type AuthenticationOption =
Public Enum AuthenticationOption
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
Default | 0 | Uses the default authentication level for the specified authentication service. In COM+, this setting is provided by the |
None | 1 | Authentication does not occur. |
Connect | 2 | Authenticates credentials only when the connection is made. |
Call | 3 | Authenticates credentials at the beginning of every call. |
Packet | 4 | Authenticates credentials and verifies that all call data is received. |
Integrity | 5 | Authenticates credentials and verifies that no call data has been modified in transit. |
Privacy | 6 | Authenticates credentials and encrypts the packet, including the data and the sender's identity and signature. |
Examples
The following code example demonstrates the use of this enumeration in conjunction with the ApplicationAccessControlAttribute attribute.
// Set component access controls.
[assembly:ApplicationAccessControl(Authentication=AuthenticationOption::Privacy,
ImpersonationLevel=ImpersonationLevelOption::Identify,
AccessChecksLevel=AccessChecksLevelOption::ApplicationComponent)];
// Set component access controls.
[assembly: ApplicationAccessControl(Authentication=AuthenticationOption.Privacy,
ImpersonationLevel=ImpersonationLevelOption.Identify,
AccessChecksLevel=AccessChecksLevelOption.ApplicationComponent)]
' Set component access controls.
<Assembly: ApplicationAccessControl(Authentication:=AuthenticationOption.Privacy, ImpersonationLevel:=ImpersonationLevelOption.Identify, AccessChecksLevel:=AccessChecksLevelOption.ApplicationComponent)>