Share via


ListSecretsResponseMessage.Value Property

 

Gets or sets the value for this instance.

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

Syntax

[JsonPropertyAttribute(DefaultValueHandling = DefaultValueHandling.Include, 
    NullValueHandling = NullValueHandling.Include, PropertyName = "value", 
    Required = Required.Default)]
public IEnumerable<SecretItem> Value { get; set; }
public:
[JsonPropertyAttribute(DefaultValueHandling = DefaultValueHandling::Include, 
    NullValueHandling = NullValueHandling::Include, PropertyName = "value", 
    Required = Required::Default)]
property IEnumerable<SecretItem^>^ Value {
    IEnumerable<SecretItem^>^ get();
    void set(IEnumerable<SecretItem^>^ value);
}
[<JsonPropertyAttribute(DefaultValueHandling = DefaultValueHandling.Include,
    NullValueHandling = NullValueHandling.Include, PropertyName = "value",
    Required = Required.Default)>]
member Value : IEnumerable<SecretItem> with get, set
<JsonPropertyAttribute(DefaultValueHandling := DefaultValueHandling.Include,
    NullValueHandling := NullValueHandling.Include, PropertyName := "value",
    Required := Required.Default)>
Public Property Value As IEnumerable(Of SecretItem)

Property Value

Type: System.Collections.Generic.IEnumerable<SecretItem>

The value for this instance.

See Also

ListSecretsResponseMessage Class
Microsoft.Azure.KeyVault Namespace

Return to top