Share via


JSONWebKeySet Constructors

Definition

Overloads

JSONWebKeySet()

Initializes a new instance of the JSONWebKeySet class.

JSONWebKeySet(IList<JSONWebKey>)

Initializes a new instance of the JSONWebKeySet class.

JSONWebKeySet()

Initializes a new instance of the JSONWebKeySet class.

public JSONWebKeySet ();
Public Sub New ()

Applies to

JSONWebKeySet(IList<JSONWebKey>)

Initializes a new instance of the JSONWebKeySet class.

public JSONWebKeySet (System.Collections.Generic.IList<Microsoft.Azure.Management.Attestation.Models.JSONWebKey> keys = default);
new Microsoft.Azure.Management.Attestation.Models.JSONWebKeySet : System.Collections.Generic.IList<Microsoft.Azure.Management.Attestation.Models.JSONWebKey> -> Microsoft.Azure.Management.Attestation.Models.JSONWebKeySet
Public Sub New (Optional keys As IList(Of JSONWebKey) = Nothing)

Parameters

keys
IList<JSONWebKey>

The value of the "keys" parameter is an array of JWK values. By default, the order of the JWK values within the array does not imply an order of preference among them, although applications of JWK Sets can choose to assign a meaning to the order for their purposes, if desired.

Applies to