SqlClientPermission.cs 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. //
  2. // System.Data.SqlClient.SqlClientPermission.cs
  3. //
  4. // Author:
  5. // Rodrigo Moya ([email protected])
  6. // Daniel Morgan ([email protected])
  7. // Tim Coleman ([email protected])
  8. //
  9. // (C) Ximian, Inc 2002
  10. // Copyright (C) Tim Coleman, 2002
  11. //
  12. using System;
  13. using System.Data;
  14. using System.Data.Common;
  15. using System.Security;
  16. using System.Security.Permissions;
  17. namespace System.Data.SqlClient {
  18. [Serializable]
  19. public sealed class SqlClientPermission : DBDataPermission
  20. {
  21. #region Constructors
  22. [MonoTODO]
  23. public SqlClientPermission ()
  24. {
  25. // FIXME: do constructor
  26. }
  27. [MonoTODO]
  28. public SqlClientPermission (PermissionState state)
  29. {
  30. // FIXME: do constructor
  31. }
  32. [MonoTODO]
  33. public SqlClientPermission (PermissionState state, bool allowBlankPassword)
  34. {
  35. throw new NotImplementedException ();
  36. }
  37. #endregion // Constructors
  38. #region Methods
  39. [MonoTODO]
  40. public override IPermission Copy ()
  41. {
  42. throw new NotImplementedException ();
  43. }
  44. [MonoTODO]
  45. public override void FromXml (SecurityElement securityElement)
  46. {
  47. throw new NotImplementedException ();
  48. }
  49. [MonoTODO]
  50. public override IPermission Intersect (IPermission target)
  51. {
  52. throw new NotImplementedException ();
  53. }
  54. [MonoTODO]
  55. public override bool IsSubsetOf (IPermission target)
  56. {
  57. throw new NotImplementedException ();
  58. }
  59. [MonoTODO]
  60. public override string ToString ()
  61. {
  62. throw new NotImplementedException ();
  63. }
  64. [MonoTODO]
  65. public override SecurityElement ToXml ()
  66. {
  67. throw new NotImplementedException ();
  68. }
  69. [MonoTODO]
  70. public override IPermission Union (IPermission target)
  71. {
  72. throw new NotImplementedException ();
  73. }
  74. #endregion // Methods
  75. }
  76. }