[Backport to 2.4.3]
[mcs.git] / class / System.Data / System.Data.OleDb.jvm / OleDbPermission.cs
blob92311c560bb172cbf964cf690159bd092f017ecc
1 //
2 // System.Data.OleDb.OleDbPermission
3 //
4 // Author:
5 // Rodrigo Moya (rodrigo@ximian.com)
6 // Tim Coleman (tim@timcoleman.com)
7 //
8 // Copyright (C) Rodrigo Moya, 2002
9 // Copyright (C) Tim Coleman, 2002
10 // (C) 2005 Mainsoft Corporation (http://www.mainsoft.com)
14 // Permission is hereby granted, free of charge, to any person obtaining
15 // a copy of this software and associated documentation files (the
16 // "Software"), to deal in the Software without restriction, including
17 // without limitation the rights to use, copy, modify, merge, publish,
18 // distribute, sublicense, and/or sell copies of the Software, and to
19 // permit persons to whom the Software is furnished to do so, subject to
20 // the following conditions:
21 //
22 // The above copyright notice and this permission notice shall be
23 // included in all copies or substantial portions of the Software.
24 //
25 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
29 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
30 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
31 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
35 using System.Data;
36 using System.Data.Common;
37 using System.Security;
38 using System.Security.Permissions;
40 namespace System.Data.OleDb
42 [Serializable]
43 public sealed class OleDbPermission : DBDataPermission
45 #region Constructors
47 #if NET_2_0
48 [ObsoleteAttribute ("OleDbPermission() has been deprecated. Use the OleDbPermission(PermissionState.None) constructor. http://go.microsoft.com/fwlink/?linkid=14202", true)]
49 #endif
50 public OleDbPermission ()
54 public OleDbPermission (PermissionState state) : base(state)
58 #if NET_2_0
59 [ObsoleteAttribute ("OleDbPermission() has been deprecated. Use the OleDbPermission(PermissionState.None) constructor. http://go.microsoft.com/fwlink/?linkid=14202", true)]
60 #endif
61 public OleDbPermission (PermissionState state, bool allowBlankPassword) : base(state, allowBlankPassword)
65 #endregion
67 #region Properties
69 public string Provider {
70 [MonoTODO]
71 get { throw new NotImplementedException (); }
72 [MonoTODO]
73 set { throw new NotImplementedException (); }
76 #endregion
78 #region Methods
80 [MonoTODO]
81 public override IPermission Copy ()
83 throw new NotImplementedException ();
86 [MonoTODO]
87 public override void FromXml (SecurityElement securityElement)
89 throw new NotImplementedException ();
92 [MonoTODO]
93 public override IPermission Intersect (IPermission target)
95 throw new NotImplementedException ();
98 [MonoTODO]
99 public override bool IsSubsetOf (IPermission target)
101 throw new NotImplementedException ();
104 [MonoTODO]
105 public override SecurityElement ToXml ()
107 throw new NotImplementedException ();
110 [MonoTODO]
111 public override IPermission Union (IPermission target)
113 throw new NotImplementedException ();
116 #endregion