TokenResponse.RefreshToken Property
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.
Provides the refresh_token
parameter of the token response.
public:
property Platform::String ^ RefreshToken { Platform::String ^ get(); };
winrt::hstring RefreshToken();
public string RefreshToken { get; }
var string = tokenResponse.refreshToken;
Public ReadOnly Property RefreshToken As String
Property Value
A string that contains the refresh_token
parameter of the token response.
Examples
See the Refresh an access token section of Implement OAuth functionality in Windows apps for an example of how to refresh an access token.