2002-08-05 Rodrigo Moya <rodrigo@ximian.com>
[mono.git] / mcs / class / corlib / System.Runtime.Remoting.Channels / ChannelDataStore.cs
1 //
2 // System.Runtime.Remoting.Channels.ChannelDataStore.cs
3 //
4 // Author: Rodrigo Moya (rodrigo@ximian.com)
5 //
6 // 2002 (C) Copyright, Ximian, Inc.
7 //
8
9 namespace System.Runtime.Remoting.Channels
10 {
11         public class ChannelDataStore : IChannelDataStore
12         {
13                 private string[] channelUris;
14                 
15                 public ChannelDataStore (string[] uris)
16                 {
17                         channelUris = uris;
18                 }
19
20                 public string[] ChannelUris
21                 {
22                         get {
23                                 return channelUris;
24                         }
25                         set {
26                                 channelUris = value;
27                         }
28                 }
29
30                 public object this[object key]
31                 {
32                         [MonoTODO]
33                         get {
34                                 throw new NotImplementedException ();
35                         }
36
37                         [MonoTODO]
38                         set {
39                                 throw new NotImplementedException ();
40                         }
41                 }
42         }
43 }