| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- //
- // System.Data.SqlClient.SqlClientPermission.cs
- //
- // Author:
- // Rodrigo Moya ([email protected])
- // Daniel Morgan ([email protected])
- //
- // (C) Ximian, Inc 2002
- //
- using System;
- using System.Data;
- using System.Data.Common;
- using System.Security;
- using System.Security.Permissions;
- namespace System.Data.SqlClient {
- public sealed class SqlClientPermission : DBDataPermission {
-
- [MonoTODO]
- public SqlClientPermission() {
- // FIXME: do constructor
- }
- [MonoTODO]
- public SqlClientPermission(PermissionState state) {
- // FIXME: do constructor
- }
- [MonoTODO]
- public SqlClientPermission(PermissionState state,
- bool allowBlankPassword) {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override IPermission Copy() {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override void FromXml(SecurityElement
- securityElement) {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override IPermission Intersect(IPermission target) {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override bool IsSubsetOf(IPermission target) {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override string ToString() {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override SecurityElement ToXml() {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override IPermission Union(IPermission target) {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- ~SqlClientPermission() {
- // FIXME: destructor to release resources
- }
- }
- }
|