JSONWebKeySet Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.