Share via


JsonWebKey.KeyOps Property

 

Gets or sets the supported key operations.

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

Syntax

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

Property Value

Type: System.String[]

The supported key operations.

See Also

JsonWebKey Class
Microsoft.Azure.KeyVault.WebKey Namespace

Return to top