Share via


ImportKeyRequestMessage.Key Property

 

Gets or sets the key.

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

Syntax

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

Property Value

Type: Microsoft.Azure.KeyVault.WebKey.JsonWebKey

The key.

See Also

ImportKeyRequestMessage Class
Microsoft.Azure.KeyVault Namespace

Return to top