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

Delta Between Two Patch Sets: Src/GoogleApis.Auth/OAuth2/IAuthorizationCodeInstalledApp.cs

Issue 13972043: Issue 351: Reimplement OAuth2 (Step 3 - Tests, Flows and Credential) (Closed) Base URL: https://google-api-dotnet-client.googlecode.com/hg/
Left Patch Set: minor Created 10 years, 6 months ago
Right Patch Set: minor Created 10 years, 5 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:
Right: Side by side diff | Download
LEFTRIGHT
(no file at all)
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
(...skipping 16 matching lines...) Expand all
27 /// <summary>Gets the authorization code flow.</summary> 27 /// <summary>Gets the authorization code flow.</summary>
28 IAuthorizationCodeFlow Flow { get; } 28 IAuthorizationCodeFlow Flow { get; }
29 29
30 /// <summary>Gets the code receiver.</summary> 30 /// <summary>Gets the code receiver.</summary>
31 ICodeReceiver CodeReceiver { get; } 31 ICodeReceiver CodeReceiver { get; }
32 32
33 /// <summary>Authorizes the installed application to access user's prote cted data.</summary> 33 /// <summary>Authorizes the installed application to access user's prote cted data.</summary>
34 /// <param name="userId">User identifier</param> 34 /// <param name="userId">User identifier</param>
35 /// <param name="taskCancellationToken">Cancellation token to cancel an operation</param> 35 /// <param name="taskCancellationToken">Cancellation token to cancel an operation</param>
36 /// <returns>The user's credential</returns> 36 /// <returns>The user's credential</returns>
37 Task<Credential> Authorize(string userId, CancellationToken taskCancella tionToken); 37 Task<UserCredential> Authorize(string userId, CancellationToken taskCanc ellationToken);
38 } 38 }
39 } 39 }
LEFTRIGHT

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