OAuthConsentRequestResponseItem 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
| Name | Description |
|---|---|
| OAuthConsentRequestResponseItem(String, String) |
Initializes a new instance of OAuthConsentRequestResponseItem. |
| OAuthConsentRequestResponseItem(Uri, String) |
Initializes a new instance of OAuthConsentRequestResponseItem. |
OAuthConsentRequestResponseItem(String, String)
Initializes a new instance of OAuthConsentRequestResponseItem.
public OAuthConsentRequestResponseItem(string consentLink, string serverLabel);
new Azure.AI.Extensions.OpenAI.OAuthConsentRequestResponseItem : string * string -> Azure.AI.Extensions.OpenAI.OAuthConsentRequestResponseItem
Public Sub New (consentLink As String, serverLabel As String)
Parameters
- consentLink
- String
The link the user can use to perform OAuth consent.
- serverLabel
- String
The server label for the OAuth consent request.
Exceptions
consentLink or serverLabel is null.
Applies to
OAuthConsentRequestResponseItem(Uri, String)
Initializes a new instance of OAuthConsentRequestResponseItem.
public OAuthConsentRequestResponseItem(Uri consentLink, string serverLabel);
new Azure.AI.Extensions.OpenAI.OAuthConsentRequestResponseItem : Uri * string -> Azure.AI.Extensions.OpenAI.OAuthConsentRequestResponseItem
Public Sub New (consentLink As Uri, serverLabel As String)
Parameters
- consentLink
- Uri
The link the user can use to perform OAuth consent.
- serverLabel
- String
The server label for the OAuth consent request.
Exceptions
consentLink or serverLabel is null.