Merge pull request #1218 from AndreyAkinshin/master
[mono.git] / mcs / class / System.Runtime.Remoting / System.Runtime.Remoting.Services / RemotingClientProxy.cs
1 //
2 // System.Runtime.Remoting.Services.RemotingClientProxy.cs
3 //
4 // Author: Lluis Sanchez Gual (lsg@ctv.es)
5 //
6 // 2004 (C) Copyright, Novell, Inc.
7 //
8
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 // 
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 // 
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 //
29
30 using System;
31 using System.ComponentModel;
32 using System.Runtime.InteropServices;
33
34 namespace System.Runtime.Remoting.Services
35 {
36         [ComVisible (true)]
37         public abstract class RemotingClientProxy: Component
38         {
39                 protected object _tp;
40                 protected Type _type;
41                 protected string _url;
42                 
43                 protected RemotingClientProxy()
44                 {
45                 }
46                 
47                 [MonoTODO]
48                 public bool AllowAutoRedirect 
49                 {
50                         get { throw new NotImplementedException (); }
51                         set { throw new NotImplementedException (); }
52                 }
53                 
54                 [MonoTODO]
55                 public object Cookies
56                 {
57                         get { throw new NotImplementedException (); }
58                 }
59                 
60                 [MonoTODO]
61                 public string Domain
62                 {
63                         get { throw new NotImplementedException (); }
64                         set { throw new NotImplementedException (); }
65                 }
66                 
67                 [MonoTODO]
68                 public bool EnableCookies
69                 {
70                         get { throw new NotImplementedException (); }
71                         set { throw new NotImplementedException (); }
72                 }
73                 
74                 [MonoTODO]
75                 public string Password
76                 {
77                         get { throw new NotImplementedException (); }
78                         set { throw new NotImplementedException (); }
79                 }
80                 
81                 [MonoTODO]
82                 public string Path
83                 {
84                         get { throw new NotImplementedException (); }
85                         set { throw new NotImplementedException (); }
86                 }
87         
88                 [MonoTODO]
89                 public bool PreAuthenticate
90                 {
91                         get { throw new NotImplementedException (); }
92                         set { throw new NotImplementedException (); }
93                 }
94         
95                 [MonoTODO]
96                 public string ProxyName
97                 {
98                         get { throw new NotImplementedException (); }
99                         set { throw new NotImplementedException (); }
100                 }
101         
102                 [MonoTODO]
103                 public int ProxyPort
104                 {
105                         get { throw new NotImplementedException (); }
106                         set { throw new NotImplementedException (); }
107                 }
108         
109                 [MonoTODO]
110                 public int Timeout
111                 {
112                         get { throw new NotImplementedException (); }
113                         set { throw new NotImplementedException (); }
114                 }
115         
116                 [MonoTODO]
117                 public string Url
118                 {
119                         get { throw new NotImplementedException (); }
120                         set { throw new NotImplementedException (); }
121                 }
122         
123                 [MonoTODO]
124                 public string UserAgent
125                 {
126                         get { throw new NotImplementedException (); }
127                         set { throw new NotImplementedException (); }
128                 }
129         
130                 [MonoTODO]
131                 public string Username
132                 {
133                         get { throw new NotImplementedException (); }
134                         set { throw new NotImplementedException (); }
135                 }
136                 
137                 [MonoTODO]
138                 protected void ConfigureProxy (Type type, string url)
139                 {
140                 }
141                 
142                 [MonoTODO]
143                 protected void ConnectProxy()
144                 {
145                 }
146         }
147 }