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

Side by Side Diff: Src/GoogleApis.Auth.Windows/OAuth2/AuthorizationCodeWindowsInstalledApp.cs

Issue 135720043: Issue 471: Support Windows 8.1 applications (Closed) Base URL: https://google-api-dotnet-client.googlecode.com/hg/
Patch Set: Address Jeese's comments Created 9 years, 7 months ago
Left:
Right:
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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 Copyright 2013 Google Inc 2 Copyright 2013 Google Inc
3 3
4 Licensed under the Apache License, Version 2.0 (the "License"); 4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License. 5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at 6 You may obtain a copy of the License at
7 7
8 http://www.apache.org/licenses/LICENSE-2.0 8 http://www.apache.org/licenses/LICENSE-2.0
9 9
10 Unless required by applicable law or agreed to in writing, software 10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS, 11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and 13 See the License for the specific language governing permissions and
14 limitations under the License. 14 limitations under the License.
15 */ 15 */
16 16
17 using System; 17 using System;
18 using System.Threading; 18 using System.Threading;
19 using System.Threading.Tasks; 19 using System.Threading.Tasks;
20 20
21 using Google.Apis.Auth.OAuth2.Flows; 21 using Google.Apis.Auth.OAuth2.Flows;
22 22
23 namespace Google.Apis.Auth.OAuth2 23 namespace Google.Apis.Auth.OAuth2
24 { 24 {
25 /// <summary> 25 /// <summary>
26 /// OAuth 2.0 authorization code flow for a Windows 8 installed applications that persists end-user credentials. 26 /// OAuth 2.0 authorization code flow for a Windows 8.1 installed applicatio n that persists end-user credentials.
27 /// <remarks> 27 /// <remarks>
28 /// This installed app class uses an internal <see cref="AuthorizationCodeIn stalledApp"/> with a 28 /// This installed app class uses an internal <see cref="AuthorizationCodeIn stalledApp"/> with a
29 /// <see cref="Google.Apis.Auth.OAuth2.AuthorizationCodeBroker"/> for retrie ving the authorization code.· 29 /// <see cref="Google.Apis.Auth.OAuth2.AuthorizationCodeBroker"/> for retrie ving the authorization code.·
30 /// </remarks> 30 /// </remarks>
31 /// </summary> 31 /// </summary>
32 public sealed class AuthorizationCodeWinRTInstalledApp : IAuthorizationCodeI nstalledApp 32 public sealed class AuthorizationCodeWindowsInstalledApp : IAuthorizationCod eInstalledApp
33 { 33 {
34 private readonly IAuthorizationCodeInstalledApp innerInstallApp; 34 private readonly IAuthorizationCodeInstalledApp innerInstallApp;
35 35
36 /// <summary> 36 /// <summary>
37 /// Constructs a new authorization code for Windows Store application ta rgeting an installed application flow. 37 /// Constructs a new authorization code for Windows Store application ta rgeting an installed application flow.
38 /// </summary> 38 /// </summary>
39 /// <param name="authorizationCodeFlowInitializer">An authorization code flow initializer.</param> 39 /// <param name="authorizationCodeFlowInitializer">An authorization code flow initializer.</param>
40 public AuthorizationCodeWinRTInstalledApp(AuthorizationCodeFlow.Initiali zer authorizationCodeFlowInitializer) 40 public AuthorizationCodeWindowsInstalledApp(AuthorizationCodeFlow.Initia lizer authorizationCodeFlowInitializer)
41 { 41 {
42 innerInstallApp = new AuthorizationCodeInstalledApp( 42 innerInstallApp = new AuthorizationCodeInstalledApp(
43 new AuthorizationCodeFlow(authorizationCodeFlowInitializer), new AuthorizationCodeBroker()); 43 new AuthorizationCodeFlow(authorizationCodeFlowInitializer), new AuthorizationCodeBroker());
44 } 44 }
45 45
46 /// <summary> 46 /// <summary>
47 /// Constructs a new authorization code for Windows Store application ta rgeting an installed application flow. 47 /// Constructs a new authorization code for Windows Store application ta rgeting an installed application flow.
48 /// </summary> 48 /// </summary>
49 /// <param name="flow">An authorization code flow.</param> 49 /// <param name="flow">An authorization code flow.</param>
50 public AuthorizationCodeWinRTInstalledApp(IAuthorizationCodeFlow flow) 50 public AuthorizationCodeWindowsInstalledApp(IAuthorizationCodeFlow flow)
51 { 51 {
52 innerInstallApp = new AuthorizationCodeInstalledApp(flow, new Author izationCodeBroker()); 52 innerInstallApp = new AuthorizationCodeInstalledApp(flow, new Author izationCodeBroker());
53 } 53 }
54 54
55 #region IAuthorizationCodeInstalledApp Members 55 #region IAuthorizationCodeInstalledApp Members
56 56
57 public IAuthorizationCodeFlow Flow 57 public IAuthorizationCodeFlow Flow
58 { 58 {
59 get { return innerInstallApp.Flow; } 59 get { return innerInstallApp.Flow; }
60 } 60 }
61 61
62 public ICodeReceiver CodeReceiver 62 public ICodeReceiver CodeReceiver
63 { 63 {
64 get { return innerInstallApp.CodeReceiver; } 64 get { return innerInstallApp.CodeReceiver; }
65 } 65 }
66 66
67 public async Task<UserCredential> AuthorizeAsync(string userId, Cancella tionToken taskCancellationToken) 67 public async Task<UserCredential> AuthorizeAsync(string userId, Cancella tionToken taskCancellationToken)
68 { 68 {
69 return await innerInstallApp.AuthorizeAsync(userId, taskCancellation Token).ConfigureAwait(false); 69 return await innerInstallApp.AuthorizeAsync(userId, taskCancellation Token).ConfigureAwait(false);
70 } 70 }
71 71
72 #endregion 72 #endregion
73 } 73 }
74 } 74 }
OLDNEW

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