KeyReleasePolicy.EncodedPolicy Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the policy rules under which the key can be released encoded based on the ContentType.
public BinaryData EncodedPolicy { get; }
member this.EncodedPolicy : BinaryData
Public ReadOnly Property EncodedPolicy As BinaryData
Property Value
Examples
The EncodedPolicy can be easily written to a file:
KeyReleasePolicy policy = key.Properties.ReleasePolicy;
using (Stream stream = policy.EncodedPolicy.ToStream())
{
using FileStream file = File.OpenWrite("policy.dat");
stream.CopyTo(file);
}
Remarks
For more information regarding the release policy grammar for Azure Key Vault, please refer to:
- https://aka.ms/policygrammarkeys for Azure Key Vault release policy grammar.
- https://aka.ms/policygrammarmhsm for Azure Managed HSM release policy grammar.
Applies to
Współpracuj z nami w serwisie GitHub
Źródło tej zawartości można znaleźć w witrynie GitHub, gdzie można również tworzyć i przeglądać problemy i żądania ściągnięcia. Więcej informacji znajdziesz w naszym przewodniku dla współtwórców.
Azure SDK for .NET