EffectiveRights property

EffectiveRights? EffectiveRights
Gets the Email Lifecycle Management (ELC) information associated with the folder. Gets a value indicating the effective rights the current authenticated user has on the folder.

Implementation

// ManagedFolderInformation get ManagedFolderInformation => this.PropertyBag[FolderSchema.ManagedFolderInformation];

/// <summary>
/// Gets a value indicating the effective rights the current authenticated user has on the folder.
/// </summary>
enumerations.EffectiveRights? get EffectiveRights =>
    this.PropertyBag[FolderSchema.EffectiveRights]
        as enumerations.EffectiveRights?;