AccessRights Enum

Definition

Contains the possible access rights for a user.

This enumeration supports a bitwise combination of its member values.

public enum class AccessRights
[System.Flags]
[System.Runtime.Serialization.DataContract(Namespace="http://schemas.microsoft.com/crm/2011/Contracts")]
public enum AccessRights
[<System.Flags>]
[<System.Runtime.Serialization.DataContract(Namespace="http://schemas.microsoft.com/crm/2011/Contracts")>]
type AccessRights = 
Public Enum AccessRights
Inheritance
AccessRights
Attributes

Fields

AppendAccess 4

The right to append the specified record to another object. Value = 4 (0x04).

AppendToAccess 16

The right to append another record to the specified object. Value = 16 (0x10).

AssignAccess 524288

The right to assign the specified record to another user or team. Value = 524288 (0x80000).

CreateAccess 32

The right to create a record. Value = 32 (0x20).

DeleteAccess 65536

The right to delete the specified record. Value = 65536 (0x10000).

None 0

No access. Value = 0 (0x00).

ReadAccess 1

The right to read the specified type of record. Value = 1 (0x01).

ShareAccess 262144

The right to share the specified record. Value = 262144 (0x40000).

WriteAccess 2

The right to update the specified record. Value = 2 (0x02).

Remarks

This enumeration is used for the AccessMask property.

Applies to

See also