OdbcPermission.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. //
  2. // System.Data.Odbc.OdbcPermission
  3. //
  4. // Author:
  5. // Umadevi S ([email protected])
  6. //
  7. // Copyright (C) Novell Inc, 2004
  8. //
  9. using System.Data;
  10. using System.Data.Common;
  11. using System.Security;
  12. using System.Security.Permissions;
  13. namespace System.Data.Odbc
  14. {
  15. [Serializable]
  16. public sealed class OdbcPermission : DBDataPermission
  17. {
  18. #region Constructors
  19. [MonoTODO]
  20. public OdbcPermission () : base (PermissionState.None)
  21. {
  22. throw new NotImplementedException ();
  23. }
  24. [MonoTODO]
  25. public OdbcPermission (PermissionState state)
  26. : base (state)
  27. {
  28. throw new NotImplementedException ();
  29. }
  30. [MonoTODO]
  31. public OdbcPermission (PermissionState state, bool allowBlankPassword)
  32. : base (state, allowBlankPassword, true)
  33. {
  34. throw new NotImplementedException ();
  35. }
  36. #endregion
  37. #region Properties
  38. internal string Provider {
  39. [MonoTODO]
  40. get { throw new NotImplementedException (); }
  41. [MonoTODO]
  42. set { throw new NotImplementedException (); }
  43. }
  44. #endregion
  45. #region Methods
  46. [MonoTODO]
  47. public override IPermission Copy ()
  48. {
  49. throw new NotImplementedException ();
  50. }
  51. [MonoTODO]
  52. public override void Add (string connectionString, string restrictions, KeyRestrictionBehavior behavior)
  53. {
  54. throw new NotImplementedException ();
  55. }
  56. #endregion
  57. }
  58. }