* Stubed System.Runtime.Remoting.Channels.Http
[mono.git] / mcs / class / System.Runtime.Remoting / System.Runtime.Remoting.Channels.Http / HttpClientChannel.cs
1 //
2 // System.Runtime.Remoting.Channels.Http.HttpClientChannel
3 //
4 // Authors:
5 //      Martin Willemoes Hansen (mwh@sysrq.dk)
6 //
7 // (C) 2003 Martin Willemoes Hansen
8 //
9
10 using System.Collections;
11 using System.Runtime.Remoting.Messaging;
12
13 namespace System.Runtime.Remoting.Channels.Http 
14 {
15         public class HttpClientChannel : BaseChannelWithProperties,
16                                          IChannelSender, IChannel 
17         {
18                 [MonoTODO]
19                 public HttpClientChannel()
20                 {
21                 }
22
23                 public string ChannelName {
24                         [MonoTODO]
25                         get { throw new NotImplementedException(); }
26                 }
27
28                 public int ChannelPriority {
29                         [MonoTODO]
30                         get { throw new NotImplementedException(); }
31                 }
32
33                 public override object this [object key] {
34                         [MonoTODO]
35                         get { throw new NotImplementedException(); } 
36
37                         [MonoTODO]
38                         set { throw new NotImplementedException(); }
39                 }
40
41                 public override ICollection Keys {
42                         [MonoTODO]
43                         get { throw new NotImplementedException(); }
44                 }
45
46                 public override IDictionary Properties {
47                         [MonoTODO]
48                         get { throw new NotImplementedException(); }
49                 }
50
51                 [MonoTODO]
52                 public IMessageSink CreateMessageSink (string url, 
53                                                        object remoteChannelData,
54                                                        out string objectURI)
55                 {
56                         throw new NotImplementedException();
57                 }
58
59                 [MonoTODO]
60                 public string Parse (string url, out string objectURI)
61                 {
62                         throw new NotImplementedException();
63                 }
64
65                 [MonoTODO]
66                 ~HttpClientChannel()
67                 {
68                 }
69         }       
70 }