| File: MS\Internal\Documents\RightsManagementStatus.cs | Web Access |
| Project: src\wpf\src\Microsoft.DotNet.Wpf\src\PresentationUI\PresentationUI.csproj (PresentationUI) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // Description: // RMStatus enum for overall status of document RM. namespace MS.Internal.Documents { /// <summary> /// Rights Management status for a document. /// </summary> // RightsManagementResourceHelper.GetDrawingBrushFromStatus relies on these values. It // assumes this to be of type int (default) and 0-indexed (default). // Any changes to the type or indexing of this enum will require updates to that code. internal enum RightsManagementStatus { /// <summary> /// Document RM status is unknown, this represents the uninitialized value. /// </summary> Unknown, /// <summary> /// Document is not RM-protected. /// </summary> Unprotected, /// <summary> /// Document is RM-protected. /// </summary> Protected, } }