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
Met ons samenwerken op GitHub
De bron voor deze inhoud vindt u op GitHub, waar u ook problemen en pull-aanvragen kunt maken en controleren. Bekijk onze gids voor inzenders voor meer informatie.
Azure SDK for .NET