ProtectionLevel Enumeration

 

Applies To: SQL Server (starting with 2016)

Enumerates the protection level associated with opening a connection to a SSAS Server.

Namespace:   Microsoft.AnalysisServices
Assembly:  Microsoft.AnalysisServices.Core (in Microsoft.AnalysisServices.Core.dll)

Syntax

public enum ProtectionLevel
public enum class ProtectionLevel
type ProtectionLevel
Public Enumeration ProtectionLevel

Members

Member name Description
Connection

Requires authentication, but messages are sent in clear text without signatures.

Integrity

Requires authentication and uses signature to detect any tampering of the data which may have occurred between the two end points of a communication.

None

Requires no authentication, no signatures, and no encryption.

Privacy

Requires authentication, encrypts and signs the messages being transferred between the two end points of a communication. This is the maximum level of protection.

See Also

Microsoft.AnalysisServices Namespace

Return to top