OleDbPermission.cs 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. //
  2. // System.Data.OleDb.OleDbPermission
  3. //
  4. // Author:
  5. // Rodrigo Moya ([email protected])
  6. // Tim Coleman ([email protected])
  7. //
  8. // Copyright (C) Rodrigo Moya, 2002
  9. // Copyright (C) Tim Coleman, 2002
  10. //
  11. using System.Data;
  12. using System.Data.Common;
  13. using System.Security;
  14. using System.Security.Permissions;
  15. namespace System.Data.OleDb
  16. {
  17. [Serializable]
  18. public sealed class OleDbPermission : DBDataPermission
  19. {
  20. #region Constructors
  21. [MonoTODO]
  22. public OleDbPermission ()
  23. {
  24. throw new NotImplementedException ();
  25. }
  26. [MonoTODO]
  27. public OleDbPermission (PermissionState state)
  28. {
  29. throw new NotImplementedException ();
  30. }
  31. [MonoTODO]
  32. public OleDbPermission (PermissionState state, bool allowBlankPassword)
  33. {
  34. throw new NotImplementedException ();
  35. }
  36. #endregion
  37. #region Properties
  38. public 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 FromXml (SecurityElement securityElement)
  53. {
  54. throw new NotImplementedException ();
  55. }
  56. [MonoTODO]
  57. public override IPermission Intersect (IPermission target)
  58. {
  59. throw new NotImplementedException ();
  60. }
  61. [MonoTODO]
  62. public override bool IsSubsetOf (IPermission target)
  63. {
  64. throw new NotImplementedException ();
  65. }
  66. [MonoTODO]
  67. public override SecurityElement ToXml ()
  68. {
  69. throw new NotImplementedException ();
  70. }
  71. [MonoTODO]
  72. public override IPermission Union (IPermission target)
  73. {
  74. throw new NotImplementedException ();
  75. }
  76. #endregion
  77. }
  78. }