다음을 통해 공유


OAuthTokenResponse.Success 메서드

정의

오버로드

Success(JObject)
Success(JsonDocument)

성공적인 OAuthTokenResponse을 만듭니다.

Success(JObject)

Source:
OAuthTokenResponse.cs
Source:
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)

Source:
OAuthTokenResponse.cs

성공적인 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 인스턴스입니다.

적용 대상