Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(841)

Unified Diff: Src/GoogleApis.Auth.WP/OAuth2/AuthorizationCodeWPInstalledApp.cs

Issue 94340043: Issue 463: Provide a signout\logout method (Closed) Base URL: https://google-api-dotnet-client.googlecode.com/hg/
Patch Set: Gus' comments Created 10 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Src/GoogleApis.Auth.WP/OAuth2/AuthorizationCodeWPInstalledApp.cs
===================================================================
--- a/Src/GoogleApis.Auth.WP/OAuth2/AuthorizationCodeWPInstalledApp.cs
b/Src/GoogleApis.Auth.WP/OAuth2/AuthorizationCodeWPInstalledApp.cs
@@ -38,14 38,25 @@
{
private readonly IAuthorizationCodeInstalledApp innerInstallApp;
- /// <summary>Constructs a new authorization code installed application for WP.</summary>
- /// <param name="authorizationCodeFlowInitializer">A authorization code flow initializer.</param>
/// <summary>
/// Constructs a new authorization code for Windows Phone targeting an installed application flow.
/// </summary>
/// <param name="authorizationCodeFlowInitializer">An authorization code flow initializer.</param>
public AuthorizationCodeWPInstalledApp(AuthorizationCodeFlow.Initializer authorizationCodeFlowInitializer)
{
var flow = new AuthorizationCodeFlow(authorizationCodeFlowInitializer);
innerInstallApp = new AuthorizationCodeInstalledApp(flow, new AuthorizationCodeBroker());
}
/// <summary>
/// Constructs a new authorization code for Windows Phone targeting an installed application flow.
/// </summary>
/// <param name="flow">An authorization code flow.</param>
public AuthorizationCodeWPInstalledApp(IAuthorizationCodeFlow flow)
{
innerInstallApp = new AuthorizationCodeInstalledApp(flow, new AuthorizationCodeBroker());
}
#region IAuthorizationCodeInstalledApp Members
public IAuthorizationCodeFlow Flow

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b