2005-01-14 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.Data / System.Data.Common / DbConnectionString.cs
1 //
2 // System.Data.Common.DbConnectionString
3 //
4 // Authors:
5 //      Tim Coleman (tim@timcoleman.com)
6 //      Sebastien Pouliot  <sebastien@ximian.com>
7 //
8 // Copyright (C) Tim Coleman, 2003
9 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 #if NET_2_0
32
33 using System.Collections;
34 using System.Collections.Specialized;
35 using System.Runtime.Serialization;
36 using System.Text;
37
38 namespace System.Data.Common {
39
40         [Obsolete ()]
41         public class DbConnectionString : DbConnectionOptions, ISerializable {
42
43                 #region Fields
44
45                 KeyRestrictionBehavior behavior;
46
47                 #endregion // Fields
48
49                 #region Constructors
50
51                 [MonoTODO]
52                 protected internal DbConnectionString (DbConnectionString constr)
53                 {
54                         options = constr.options;
55                 }
56
57                 [MonoTODO]
58                 public DbConnectionString (string connectionString)
59                         : base (connectionString)
60                 {
61                         options = new NameValueCollection ();
62                         ParseConnectionString (connectionString);
63                 }
64                 
65                 [MonoTODO]
66                 protected DbConnectionString (SerializationInfo si, StreamingContext sc)
67                 {
68                 }
69
70                 [MonoTODO]
71                 public DbConnectionString (string connectionString, string restrictions, KeyRestrictionBehavior behavior)
72                         : this (connectionString)
73                 {
74                         this.behavior = behavior;
75                 }
76
77                 #endregion // Constructors
78
79                 #region Properties
80
81                 public KeyRestrictionBehavior Behavior {
82                         get { return behavior; }
83                 }
84
85                 [MonoTODO]
86                 public string Restrictions {
87                         get { throw new NotImplementedException (); }
88                 }
89                 
90                 #endregion // Properties
91
92                 #region Methods
93
94                 [MonoTODO]
95                 public virtual void GetObjectData (SerializationInfo info, StreamingContext context)
96                 {
97                         throw new NotImplementedException ();
98                 }
99
100                 protected virtual string KeywordLookup (string keyname)
101                 {
102                         return keyname;
103                 }
104
105                 [MonoTODO]
106                 public virtual void PermissionDemand ()
107                 {
108                         throw new NotImplementedException ();
109                 }
110
111                 #endregion // Methods
112         }
113 }
114
115 #endif