SqlClientPermission.cs 1.5 KB

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