OleDbPermission.cs 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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 () : base (PermissionState.None)
  23. {
  24. throw new NotImplementedException ();
  25. }
  26. [MonoTODO]
  27. public OleDbPermission (PermissionState state)
  28. : base (state)
  29. {
  30. throw new NotImplementedException ();
  31. }
  32. [MonoTODO]
  33. public OleDbPermission (PermissionState state, bool allowBlankPassword)
  34. : base (state, allowBlankPassword, true)
  35. {
  36. throw new NotImplementedException ();
  37. }
  38. #endregion
  39. #region Properties
  40. public string Provider {
  41. [MonoTODO]
  42. get { throw new NotImplementedException (); }
  43. [MonoTODO]
  44. set { throw new NotImplementedException (); }
  45. }
  46. #endregion
  47. #region Methods
  48. [MonoTODO]
  49. public override IPermission Copy ()
  50. {
  51. throw new NotImplementedException ();
  52. }
  53. [MonoTODO]
  54. public override void FromXml (SecurityElement securityElement)
  55. {
  56. throw new NotImplementedException ();
  57. }
  58. [MonoTODO]
  59. public override IPermission Intersect (IPermission target)
  60. {
  61. throw new NotImplementedException ();
  62. }
  63. [MonoTODO]
  64. public override bool IsSubsetOf (IPermission target)
  65. {
  66. throw new NotImplementedException ();
  67. }
  68. [MonoTODO]
  69. public override SecurityElement ToXml ()
  70. {
  71. throw new NotImplementedException ();
  72. }
  73. [MonoTODO]
  74. public override IPermission Union (IPermission target)
  75. {
  76. throw new NotImplementedException ();
  77. }
  78. #endregion
  79. }
  80. }