| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- //
- // 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.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
- }
- }
- }
|