2002-10-25 Tim Coleman (tim@timcoleman.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         public sealed class SqlClientPermission : DBDataPermission 
19         {
20                 [MonoTODO]
21                 public SqlClientPermission () 
22                 {
23                         // FIXME: do constructor
24                 }
25
26                 [MonoTODO]
27                 public SqlClientPermission (PermissionState state) 
28                 {
29                         // FIXME: do constructor
30                 }
31
32                 [MonoTODO]
33                 public SqlClientPermission (PermissionState state, bool allowBlankPassword) 
34                 { 
35                         throw new NotImplementedException ();
36                 }
37
38                 [MonoTODO]
39                 public override IPermission Copy () 
40                 {
41                         throw new NotImplementedException ();
42                 }
43
44                 [MonoTODO]
45                 public override void FromXml (SecurityElement securityElement) 
46                 {
47                         throw new NotImplementedException ();
48                 }
49
50                 [MonoTODO]
51                 public override IPermission Intersect (IPermission target)  
52                 {
53                         throw new NotImplementedException ();
54                 }
55
56                 [MonoTODO]
57                 public override bool IsSubsetOf (IPermission target) 
58                 {
59                         throw new NotImplementedException ();
60                 }
61
62                 [MonoTODO]
63                 public override string ToString () 
64                 {
65                         throw new NotImplementedException ();
66                 }
67
68                 [MonoTODO]
69                 public override SecurityElement ToXml () 
70                 {
71                         throw new NotImplementedException ();
72                 }
73
74                 [MonoTODO]
75                 public override IPermission Union (IPermission target) 
76                 {
77                         throw new NotImplementedException ();
78                 }
79         }
80 }