**** Merged from MCS ****
[mono-project.git] / mcs / class / Mono.Data.SybaseClient / Mono.Data.SybaseClient / SybasePermission.cs
blobae8d5d0f3a6d3e22264ce733752cf44231630198
1 //
2 // Mono.Data.SybaseClient.SybasePermission.cs
3 //
4 // Author:
5 // Tim Coleman (tim@timcoleman.com)
6 //
7 // Copyright (C) Tim Coleman, 2002
8 //
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.
31 using System;
32 using System.Data;
33 using System.Data.Common;
34 using System.Security;
35 using System.Security.Permissions;
37 namespace Mono.Data.SybaseClient {
38 public sealed class SybasePermission : DBDataPermission
40 #if NET_2_0
41 [Obsolete ("Use SybasePermission(PermissionState.None)", true)]
42 #endif
43 [MonoTODO]
44 public SybasePermission ()
45 #if NET_2_0
46 : base (PermissionState.None)
47 #endif
49 // FIXME: do constructor
52 [MonoTODO]
53 public SybasePermission (PermissionState state)
54 : base (state)
56 // FIXME: do constructor
59 #if NET_2_0
60 [Obsolete ("Use SybasePermission(PermissionState.None)", true)]
61 #endif
62 [MonoTODO]
63 public SybasePermission (PermissionState state, bool allowBlankPassword)
64 #if NET_2_0
65 : base (PermissionState.None)
66 #endif
68 throw new NotImplementedException ();
71 [MonoTODO]
72 public override IPermission Copy ()
74 throw new NotImplementedException ();
77 [MonoTODO]
78 public override void FromXml (SecurityElement securityElement)
80 throw new NotImplementedException ();
83 [MonoTODO]
84 public override IPermission Intersect (IPermission target)
86 throw new NotImplementedException ();
89 [MonoTODO]
90 public override bool IsSubsetOf (IPermission target)
92 throw new NotImplementedException ();
95 [MonoTODO]
96 public override string ToString ()
98 throw new NotImplementedException ();
101 [MonoTODO]
102 public override SecurityElement ToXml ()
104 throw new NotImplementedException ();
107 [MonoTODO]
108 public override IPermission Union (IPermission target)
110 throw new NotImplementedException ();