OAuthTokenResponse.Success メソッド

定義

オーバーロード

Success(JObject)
Success(JsonDocument)

成功した を作成します OAuthTokenResponse

Success(JObject)

ソース:
OAuthTokenResponse.cs
ソース:
OAuthTokenResponse.cs
public:
 static Microsoft::AspNetCore::Authentication::OAuth::OAuthTokenResponse ^ Success(Newtonsoft::Json::Linq::JObject ^ response);
public static Microsoft.AspNetCore.Authentication.OAuth.OAuthTokenResponse Success (Newtonsoft.Json.Linq.JObject response);
static member Success : Newtonsoft.Json.Linq.JObject -> Microsoft.AspNetCore.Authentication.OAuth.OAuthTokenResponse
Public Shared Function Success (response As JObject) As OAuthTokenResponse

パラメーター

response
Newtonsoft.Json.Linq.JObject

戻り値

適用対象

Success(JsonDocument)

成功した を作成します OAuthTokenResponse

public:
 static Microsoft::AspNetCore::Authentication::OAuth::OAuthTokenResponse ^ Success(System::Text::Json::JsonDocument ^ response);
public static Microsoft.AspNetCore.Authentication.OAuth.OAuthTokenResponse Success (System.Text.Json.JsonDocument response);
static member Success : System.Text.Json.JsonDocument -> Microsoft.AspNetCore.Authentication.OAuth.OAuthTokenResponse
Public Shared Function Success (response As JsonDocument) As OAuthTokenResponse

パラメーター

response
JsonDocument

受信した JSON ペイロード。

戻り値

OAuthTokenResponse のインスタンス。

適用対象