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

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

Issue 13632059: Issue 351: Reimplement OAuth2 - Step 2 (Auth PCL - only data types) (Closed) Base URL: https://google-api-dotnet-client.googlecode.com/hg/
Left Patch Set: upload only data types and interfaces Created 10 years, 6 months ago
Right Patch Set: minor Created 10 years, 6 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:
Left: Side by side diff | Download
Right: Side by side diff | Download
LEFTRIGHT
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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 60
61 private readonly Uri authorizationServerEncodedUrl; 61 private readonly Uri authorizationServerEncodedUrl;
62 /// <summary> 62 /// <summary>
63 /// Gets the authorization server encoded URL. 63 /// Gets the authorization server encoded URL.
64 /// </summary> 64 /// </summary>
65 public Uri AuthorizationServerEncodedUrl 65 public Uri AuthorizationServerEncodedUrl
66 { 66 {
67 get { return authorizationServerEncodedUrl; } 67 get { return authorizationServerEncodedUrl; }
68 } 68 }
69 69
70 /// <summary>Constructs a new authorization request with the specified U RI.</summary> 70 /// <summary>Constructs a new authorization request with the specified U RI.</summary>
class 2013/09/24 17:25:58 Can you add a <param> for the URL and add informat
peleyal 2013/09/24 20:55:35 Done. Let me know if you want to add something spe
class 2013/09/24 21:47:44 Just the encoding type, e.g. is this just a URI or
peleyal 2013/09/25 12:36:58 I removed the encoded word from the URL name (the
71 /// <param name="authorizationServerEncodedUrl">Authorization server enc oded URI</param>
71 public AuthorizationRequestUrl(Uri authorizationServerEncodedUrl) 72 public AuthorizationRequestUrl(Uri authorizationServerEncodedUrl)
72 { 73 {
73 this.authorizationServerEncodedUrl = authorizationServerEncodedUrl; 74 this.authorizationServerEncodedUrl = authorizationServerEncodedUrl;
74 } 75 }
75 } 76 }
76 } 77 }
LEFTRIGHT

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