Share via


Secret.Tags Property

 

Gets or sets the tags for the secret.

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

Syntax

[DataMemberAttribute(Name = "tags", IsRequired = false, EmitDefaultValue = false)]
public Dictionary<string, string> Tags { get; set; }
public:
[DataMemberAttribute(Name = "tags", IsRequired = false, EmitDefaultValue = false)]
property Dictionary<String^, String^>^ Tags {
    Dictionary<String^, String^>^ get();
    void set(Dictionary<String^, String^>^ value);
}
[<DataMemberAttribute(Name = "tags", IsRequired = false, EmitDefaultValue = false)>]
member Tags : Dictionary<string, string> with get, set
<DataMemberAttribute(Name := "tags", IsRequired := False, EmitDefaultValue := False)>
Public Property Tags As Dictionary(Of String, String)

Property Value

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

The tags for the secret.

See Also

Secret Class
Microsoft.Azure.KeyVault Namespace

Return to top