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