SqlClientPermission.cs 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. namespace System.Data.SqlClient {
  14. public sealed class SqlClientPermission : DBDataPermission {
  15. [MonoTODO]
  16. public SqlClientPermission() {
  17. // FIXME: do constructor
  18. }
  19. [MonoTODO]
  20. public SqlClientPermission(PermissionState state) {
  21. // FIXME: do constructor
  22. }
  23. [MonoTODO]
  24. public SqlClientPermission(PermissionState state,
  25. bool allowBlankPassword) {
  26. throw new NotImplementedException ();
  27. }
  28. [MonoTODO]
  29. public override IPermission Copy() {
  30. throw new NotImplementedException ();
  31. }
  32. [MonoTODO]
  33. public override void FromXml(SecurityElement
  34. securityElement) {
  35. throw new NotImplementedException ();
  36. }
  37. [MonoTODO]
  38. public override IPermission Intersect(IPermission target) {
  39. throw new NotImplementedException ();
  40. }
  41. [MonoTODO]
  42. public override bool IsSubsetOf(IPermission target) {
  43. throw new NotImplementedException ();
  44. }
  45. [MonoTODO]
  46. public override string ToString() {
  47. throw new NotImplementedException ();
  48. }
  49. [MonoTODO]
  50. public override SecurityElement ToXml() {
  51. throw new NotImplementedException ();
  52. }
  53. [MonoTODO]
  54. public override IPermission Union(IPermission target) {
  55. throw new NotImplementedException ();
  56. }
  57. [MonoTODO]
  58. ~SqlClientPermission() {
  59. // FIXME: destructor to release resources
  60. }
  61. }
  62. }