KeyItem.Tags Property

 

Gets or sets the tags for the key item.

Namespace:   Microsoft.Azure.KeyVault
Assembly:  Microsoft.Azure.KeyVault (in Microsoft.Azure.KeyVault.dll)

Syntax

[JsonPropertyAttribute(DefaultValueHandling = DefaultValueHandling.Ignore, 
    NullValueHandling = NullValueHandling.Ignore, PropertyName = "tags", 
    Required = Required.Default)]
public Dictionary<string, string> Tags { get; set; }
public:
[JsonPropertyAttribute(DefaultValueHandling = DefaultValueHandling::Ignore, 
    NullValueHandling = NullValueHandling::Ignore, PropertyName = "tags", 
    Required = Required::Default)]
property Dictionary<String^, String^>^ Tags {
    Dictionary<String^, String^>^ get();
    void set(Dictionary<String^, String^>^ value);
}
[<JsonPropertyAttribute(DefaultValueHandling = DefaultValueHandling.Ignore,
    NullValueHandling = NullValueHandling.Ignore, PropertyName = "tags",
    Required = Required.Default)>]
member Tags : Dictionary<string, string> with get, set
<JsonPropertyAttribute(DefaultValueHandling := DefaultValueHandling.Ignore,
    NullValueHandling := NullValueHandling.Ignore, PropertyName := "tags",
    Required := Required.Default)>
Public Property Tags As Dictionary(Of String, String)

Property Value

Type: System.Collections.Generic.Dictionary<String, String>

The tags for the key item.

See Also

KeyItem Class
Microsoft.Azure.KeyVault Namespace

Return to top