SqlClientPermission.cs 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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. [MonoTODO]
  22. public SqlClientPermission ()
  23. {
  24. // FIXME: do constructor
  25. }
  26. [MonoTODO]
  27. public SqlClientPermission (PermissionState state)
  28. {
  29. // FIXME: do constructor
  30. }
  31. [MonoTODO]
  32. public SqlClientPermission (PermissionState state, bool allowBlankPassword)
  33. {
  34. throw new NotImplementedException ();
  35. }
  36. [MonoTODO]
  37. public override IPermission Copy ()
  38. {
  39. throw new NotImplementedException ();
  40. }
  41. [MonoTODO]
  42. public override void FromXml (SecurityElement securityElement)
  43. {
  44. throw new NotImplementedException ();
  45. }
  46. [MonoTODO]
  47. public override IPermission Intersect (IPermission target)
  48. {
  49. throw new NotImplementedException ();
  50. }
  51. [MonoTODO]
  52. public override bool IsSubsetOf (IPermission target)
  53. {
  54. throw new NotImplementedException ();
  55. }
  56. [MonoTODO]
  57. public override string ToString ()
  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. }
  72. }