Share via


ListKeysResponseMessage.Value Property

 

Gets or sets a value of 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<KeyItem> Value { get; set; }
public:
[JsonPropertyAttribute(DefaultValueHandling = DefaultValueHandling::Include, 
    NullValueHandling = NullValueHandling::Include, PropertyName = "value", 
    Required = Required::Default)]
property IEnumerable<KeyItem^>^ Value {
    IEnumerable<KeyItem^>^ get();
    void set(IEnumerable<KeyItem^>^ value);
}
[<JsonPropertyAttribute(DefaultValueHandling = DefaultValueHandling.Include,
    NullValueHandling = NullValueHandling.Include, PropertyName = "value",
    Required = Required.Default)>]
member Value : IEnumerable<KeyItem> with get, set
<JsonPropertyAttribute(DefaultValueHandling := DefaultValueHandling.Include,
    NullValueHandling := NullValueHandling.Include, PropertyName := "value",
    Required := Required.Default)>
Public Property Value As IEnumerable(Of KeyItem)

Property Value

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

The value of this instance.

See Also

ListKeysResponseMessage Class
Microsoft.Azure.KeyVault Namespace

Return to top