AuthenticationOption Enum

Definition

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
AuthenticationOption
Attributes

Fields

Call 3

Authenticates credentials at the beginning of every call.

Connect 2

Authenticates credentials only when the connection is made.

Default 0

Uses the default authentication level for the specified authentication service. In COM+, this setting is provided by the DefaultAuthenticationLevel property in the LocalComputer collection.

Integrity 5

Authenticates credentials and verifies that no call data has been modified in transit.

None 1

Authentication does not occur.

Packet 4

Authenticates credentials and verifies that all call data is received.

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)>

Applies to