| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- //
- // 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, AllowMultiple=true,
- Inherited=false)]
- [Serializable]
- public sealed class OleDbPermissionAttribute : DBDataPermissionAttribute
- {
- #region Constructors
- [MonoTODO]
- public 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
- }
- }
|