2002-05-18 Daniel Morgan <danmorg@sc.rr.com>
[mono.git] / mcs / class / System.Data / System.Data.SqlClient / SqlClientPermission.cs
1 //
2 // System.Data.SqlClient.SqlClientPermission.cs
3 //
4 // Author:
5 //   Rodrigo Moya (rodrigo@ximian.com)
6 //   Daniel Morgan (danmorg@sc.rr.com)
7 //
8 // (C) Ximian, Inc 2002
9 //
10
11 using System;
12 using System.Data;
13 using System.Data.Common;
14 using System.Security;
15 using System.Security.Permissions;
16
17 namespace System.Data.SqlClient {
18
19         public sealed class SqlClientPermission : DBDataPermission {
20                 
21                 [MonoTODO]
22                 public SqlClientPermission() {
23                         // FIXME: do constructor
24                 }
25
26                 [MonoTODO]
27                 public SqlClientPermission(PermissionState state) {
28                         // FIXME: do constructor
29                 }
30
31                 [MonoTODO]
32                 public SqlClientPermission(PermissionState state,
33                         bool allowBlankPassword) { 
34                         throw new NotImplementedException ();
35                 }
36
37                 [MonoTODO]
38                 public override IPermission Copy() {
39                         throw new NotImplementedException ();
40                 }
41
42                 [MonoTODO]
43                 public override void FromXml(SecurityElement 
44                                         securityElement) {
45                         throw new NotImplementedException ();
46                 }
47
48                 [MonoTODO]
49                 public override IPermission Intersect(IPermission target)  {
50                         throw new NotImplementedException ();
51                 }
52
53                 [MonoTODO]
54                 public override bool IsSubsetOf(IPermission target) {
55                         throw new NotImplementedException ();
56                 }
57
58                 [MonoTODO]
59                 public override string ToString() {
60                         throw new NotImplementedException ();
61                 }
62
63                 [MonoTODO]
64                 public override SecurityElement ToXml() {
65                         throw new NotImplementedException ();
66                 }
67
68                 [MonoTODO]
69                 public override IPermission Union(IPermission target) {
70                         throw new NotImplementedException ();
71                 }
72
73                 [MonoTODO]
74                 ~SqlClientPermission() {
75                         // FIXME: destructor to release resources
76                 }
77         }
78 }