SecretItem.Id Property

 

Gets or sets the ID of the secret item.

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

Syntax

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

Property Value

Type: System.String

The ID of the secret item.

See Also

SecretItem Class
Microsoft.Azure.KeyVault Namespace

Return to top