| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- //
- // 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;
- 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
- }
- }
- }
|