KeyItem Constructors
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.
Overloads
KeyItem() |
Initializes a new instance of the KeyItem class. |
KeyItem(String, KeyAttributes, IDictionary<String,String>, Nullable<Boolean>) |
Initializes a new instance of the KeyItem class. |
KeyItem()
- Source:
- KeyItem.cs
Initializes a new instance of the KeyItem class.
public KeyItem ();
Public Sub New ()
Applies to
KeyItem(String, KeyAttributes, IDictionary<String,String>, Nullable<Boolean>)
- Source:
- KeyItem.cs
Initializes a new instance of the KeyItem class.
public KeyItem (string kid = default, Microsoft.Azure.KeyVault.Models.KeyAttributes attributes = default, System.Collections.Generic.IDictionary<string,string> tags = default, bool? managed = default);
new Microsoft.Azure.KeyVault.Models.KeyItem : string * Microsoft.Azure.KeyVault.Models.KeyAttributes * System.Collections.Generic.IDictionary<string, string> * Nullable<bool> -> Microsoft.Azure.KeyVault.Models.KeyItem
Public Sub New (Optional kid As String = Nothing, Optional attributes As KeyAttributes = Nothing, Optional tags As IDictionary(Of String, String) = Nothing, Optional managed As Nullable(Of Boolean) = Nothing)
Parameters
- kid
- String
Key identifier.
- attributes
- KeyAttributes
The key management attributes.
- tags
- IDictionary<String,String>
Application specific metadata in the form of key-value pairs.
True if the key's lifetime is managed by key vault. If this is a key backing a certificate, then managed will be true.
Applies to
Azure SDK for .NET