Share via


JsonWebKey.Kty Property

 

Gets or sets the Key type, usually RSA.

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

Syntax

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

Property Value

Type: System.String

The Key type, usually RSA.

See Also

JsonWebKey Class
Microsoft.Azure.KeyVault.WebKey Namespace

Return to top