| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- //
- // System.Data.OleDb.OleDbPermissionAttribute
- //
- // Authors:
- // 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
- {
- [AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class
- | AttributeTargets.Struct | AttributeTargets.Constructor |
- AttributeTargets.Method)]
- [Serializable]
- public sealed class OleDbPermissionAttribute : DBDataPermissionAttribute
- {
- #region Constructors
- [MonoTODO]
- OleDbPermissionAttribute (SecurityAction action)
- : base (action)
- {
- }
- #endregion
- #region Properties
- [MonoTODO]
- public string Provider {
- [MonoTODO]
- get {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- set {
- throw new NotImplementedException ();
- }
- }
- #endregion
- #region Methods
- [MonoTODO]
- public override IPermission CreatePermission ()
- {
- throw new NotImplementedException ();
- }
- #endregion
- }
- }
|