084a1098a6b5cd7efb9ae1eb958e9f1256150947
[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                 #region Constructors
24
25                 [MonoTODO]
26                 public SqlClientPermission () 
27                 {
28                         // FIXME: do constructor
29                 }
30
31                 [MonoTODO]
32                 public SqlClientPermission (PermissionState state) 
33                 {
34                         // FIXME: do constructor
35                 }
36
37                 [MonoTODO]
38                 public SqlClientPermission (PermissionState state, bool allowBlankPassword) 
39                 { 
40                         throw new NotImplementedException ();
41                 }
42
43                 #endregion // Constructors
44
45                 #region Methods
46
47                 [MonoTODO]
48                 public override IPermission Copy () 
49                 {
50                         throw new NotImplementedException ();
51                 }
52
53                 [MonoTODO]
54                 public override void FromXml (SecurityElement securityElement) 
55                 {
56                         throw new NotImplementedException ();
57                 }
58
59                 [MonoTODO]
60                 public override IPermission Intersect (IPermission target)  
61                 {
62                         throw new NotImplementedException ();
63                 }
64
65                 [MonoTODO]
66                 public override bool IsSubsetOf (IPermission target) 
67                 {
68                         throw new NotImplementedException ();
69                 }
70
71                 [MonoTODO]
72                 public override string ToString () 
73                 {
74                         throw new NotImplementedException ();
75                 }
76
77                 [MonoTODO]
78                 public override SecurityElement ToXml () 
79                 {
80                         throw new NotImplementedException ();
81                 }
82
83                 [MonoTODO]
84                 public override IPermission Union (IPermission target) 
85                 {
86                         throw new NotImplementedException ();
87                 }
88
89                 #endregion // Methods
90         }
91 }