SqlClientPermission.cs 1.5 KB

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