Share via


TokenRequestParams.CodeVerifier Property

Definition

Specifies the code_verifier parameter of the token request. This property is required when the grant type is "authorization_code" and a code challenge was included in the authorization request. This is described by the section 4.1 of RFC 7636.

public:
 property Platform::String ^ CodeVerifier { Platform::String ^ get(); void set(Platform::String ^ value); };
winrt::hstring CodeVerifier();

void CodeVerifier(winrt::hstring value);
public string CodeVerifier { get; set; }
var string = tokenRequestParams.codeVerifier;
tokenRequestParams.codeVerifier = string;
Public Property CodeVerifier As String

Property Value

String

Platform::String

winrt::hstring

A string that specifies the code_verifier parameter of the token request.

Applies to