File: MS\Internal\Documents\SignaturePolicy.cs | Web Access |
Project: src\src\Microsoft.DotNet.Wpf\src\PresentationUI\PresentationUI_1t4s4vdm_wpftmp.csproj (PresentationUI) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. // Description: // SignaturePolicy enum for determining what the applied signature will allow without breaking. using System; namespace MS.Internal.Documents { [Flags] internal enum SignaturePolicy : int { AllowNothing = 0, ModifyDocumentProperties = 1, AllowSigning = 2 } } |