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

Delta Between Two Patch Sets: Src/GoogleApis/Apis/Discovery/DiscoveryVersion.cs

Issue 13412046: Reimplement OAuth2 library - Step 1 (Closed) Base URL: https://google-api-dotnet-client.googlecode.com/hg/
Left Patch Set: 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:
Right: Side by side diff | Download
LEFTRIGHT
(no file at all)
1 /* 1 /*
2 Copyright 2010 Google Inc 2 Copyright 2010 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;
18
17 namespace Google.Apis.Discovery 19 namespace Google.Apis.Discovery
18 { 20 {
19 /// <summary> An enumeration of all supported discovery versions.</summary> 21 /// <summary> An enumeration of all supported discovery versions.</summary>
20 public enum DiscoveryVersion 22 public enum DiscoveryVersion
21 { 23 {
24 /// <summary>Discovery version 1.0.</summary>
22 Version_1_0, 25 Version_1_0,
26
27 /// <summary>Discovery version 0.3.</summary>
28 [Obsolete("Discovery version 0.3 is not supported any more and it's goin g to be removed in 1.7.0-beta, " +
29 "Use Version_1_0 instead.")]
23 Version_0_3, 30 Version_0_3,
24 } 31 }
25 } 32 }
LEFTRIGHT

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