OdbcPermission.cs 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. 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 SecurityElement ToXml ()
  63. {
  64. throw new NotImplementedException ();
  65. }
  66. [MonoTODO]
  67. public override IPermission Union (IPermission target)
  68. {
  69. throw new NotImplementedException ();
  70. }
  71. #endregion
  72. }
  73. }