~manishsinha/lpsharp/proxy-code

« back to all changes in this revision

Viewing changes to LpNet.LpSharp/ClientProxy/HwdbFull.cs

  • Committer: Manish Sinha
  • Date: 2011-03-08 16:34:35 UTC
  • Revision ID: manishsinha.tech@gmail.com-20110308163435-tanqewijjckmjl6h
Remove all the proxy. It is a mess

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//------------------------------------------------------------------------------
2
 
// <auto-generated>
3
 
//     This code was generated by a tool.
4
 
//     Runtime Version: 2.0.50727.1433
5
 
//
6
 
//     Changes to this file may cause incorrect behavior and will be lost if
7
 
//     the code is regenerated.
8
 
// </auto-generated>
9
 
//------------------------------------------------------------------------------
10
 
 
11
 
namespace LpNet.Launchpad.Core
12
 
{
13
 
    using System.Collections.Generic;
14
 
    using System.Reflection;
15
 
    using System.ComponentModel;
16
 
    using System;
17
 
    
18
 
    
19
 
    public partial class HwdbFull
20
 
    {
21
 
        
22
 
        protected string _selfLink;
23
 
        
24
 
        protected string _resourceTypeLink;
25
 
        
26
 
        protected string _httpEtag;
27
 
        
28
 
        protected string _driverNamesCollectionLink;
29
 
        
30
 
        protected string _packageNamesCollectionLink;
31
 
        
32
 
        /// <summary>
33
 
        /// The canonical link to this resource.
34
 
        /// </summary>
35
 
        [Description("hwdb")]
36
 
        public string SelfLink
37
 
        {
38
 
            get
39
 
            {
40
 
                return this._selfLink;
41
 
            }
42
 
            set
43
 
            {
44
 
                this._selfLink = value;
45
 
            }
46
 
        }
47
 
        
48
 
        /// <summary>
49
 
        /// The link to the WADL description of this resource.
50
 
        /// </summary>
51
 
        public string ResourceTypeLink
52
 
        {
53
 
            get
54
 
            {
55
 
                return this._resourceTypeLink;
56
 
            }
57
 
            set
58
 
            {
59
 
                this._resourceTypeLink = value;
60
 
            }
61
 
        }
62
 
        
63
 
        /// <summary>
64
 
        /// The value of the HTTP ETag for this resource.
65
 
        /// </summary>
66
 
        public string HttpEtag
67
 
        {
68
 
            get
69
 
            {
70
 
                return this._httpEtag;
71
 
            }
72
 
            set
73
 
            {
74
 
                this._httpEtag = value;
75
 
            }
76
 
        }
77
 
        
78
 
        /// <summary>
79
 
        /// Driver Names
80
 
        /// All known distinct driver names appearing in HWDriver
81
 
        /// </summary>
82
 
        [Description("h_w_driver_name-page-resource")]
83
 
        public string DriverNamesCollectionLink
84
 
        {
85
 
            get
86
 
            {
87
 
                return this._driverNamesCollectionLink;
88
 
            }
89
 
            set
90
 
            {
91
 
                this._driverNamesCollectionLink = value;
92
 
            }
93
 
        }
94
 
        
95
 
        /// <summary>
96
 
        /// Package Names
97
 
        /// All known distinct package names appearing in HWDriver.
98
 
        /// </summary>
99
 
        [Description("h_w_driver_package_name-page-resource")]
100
 
        public string PackageNamesCollectionLink
101
 
        {
102
 
            get
103
 
            {
104
 
                return this._packageNamesCollectionLink;
105
 
            }
106
 
            set
107
 
            {
108
 
                this._packageNamesCollectionLink = value;
109
 
            }
110
 
        }
111
 
    }
112
 
}