| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- //
- // System.Data.OleDb.OleDbPermission
- //
- // Author:
- // Rodrigo Moya ([email protected])
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Rodrigo Moya, 2002
- // Copyright (C) Tim Coleman, 2002
- //
- using System.Data;
- using System.Data.Common;
- using System.Security;
- using System.Security.Permissions;
- namespace System.Data.OleDb
- {
- [Serializable]
- public sealed class OleDbPermission : DBDataPermission
- {
- #region Constructors
- [MonoTODO]
- public OleDbPermission () : base (PermissionState.None)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public OleDbPermission (PermissionState state)
- : base (state)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public OleDbPermission (PermissionState state, bool allowBlankPassword)
- : base (state, allowBlankPassword, true)
- {
- throw new NotImplementedException ();
- }
- #endregion
- #region Properties
- public string Provider {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- [MonoTODO]
- set { throw new NotImplementedException (); }
- }
- #endregion
- #region Methods
- [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 SecurityElement ToXml ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override IPermission Union (IPermission target)
- {
- throw new NotImplementedException ();
- }
- #endregion
- }
- }
|