| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- //
- // System.Data.Common.DbDataPermissionAttribute.cs
- //
- // Authors:
- // Rodrigo Moya ([email protected])
- // Tim Coleman ([email protected])
- //
- // (C) Ximian, Inc
- // Copyright (C) Tim Coleman, 2002
- //
- using System;
- using System.Security.Permissions;
- namespace System.Data.Common {
- [AttributeUsage (AttributeTargets.Assembly | AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Constructor | AttributeTargets.Method)]
- [Serializable]
- public abstract class DBDataPermissionAttribute : CodeAccessSecurityAttribute
- {
- #region Fields
- SecurityAction securityAction;
- bool allowBlankPassword;
- #endregion // Fields
- #region Constructors
- protected DBDataPermissionAttribute (SecurityAction action)
- : base (action)
- {
- securityAction = action;
- allowBlankPassword = false;
- }
- #endregion // Constructors
- #region Properties
- public bool AllowBlankPassword {
- get { return allowBlankPassword; }
- set { allowBlankPassword = value; }
- }
- #endregion // Properties
- #region // Methods
- #if NET_1_2
- [MonoTODO]
- public bool ShouldSerializeConnectionString ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public bool ShouldSerializeKeyRestrictions ()
- {
- throw new NotImplementedException ();
- }
- #endif
- #endregion // Methods
- }
- }
|