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