SamlAccessDecision Enum

Definition

Specifies whether the subject of a SamlSecurityToken security token is granted access to a given resource.

public enum class SamlAccessDecision
[System.Runtime.Serialization.DataContract]
public enum SamlAccessDecision
[<System.Runtime.Serialization.DataContract>]
type SamlAccessDecision = 
Public Enum SamlAccessDecision
Inheritance
SamlAccessDecision
Attributes

Fields

Deny 1

Specifies that access to a resource is denied.

Indeterminate 2

Specifies that the security token service that issued the SamlSecurityToken security token does not have enough information to determine the access permissions for a particular resource. A recipient of the SamlSecurityToken security token must use other means to determine the user's access permissions.

Permit 0

Specifies that access to a resource is granted.

Remarks

Use the SamlAccessDecision to express access permissions to a resource in a SamlAuthorizationDecisionStatement within a SamlSecurityToken security token.

Applies to