XmlSecureResolver.cs 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. #if NET_1_0
  2. #endif
  3. #if NET_1_1
  4. //
  5. // System.Xml.XmlSecureResolver.cs
  6. //
  7. // Author: Atsushi Enomoto ([email protected])
  8. //
  9. // (C) 2003 Atsushi Enomoto
  10. //
  11. using System;
  12. using System.Net;
  13. using System.Security;
  14. using System.Security.Policy;
  15. namespace System.Xml
  16. {
  17. public class XmlSecureResolver : XmlResolver
  18. {
  19. #region Static Members
  20. [MonoTODO]
  21. public static Evidence CreateEvidenceForUrl (string securityUrl)
  22. {
  23. throw new NotImplementedException ();
  24. }
  25. [MonoTODO]
  26. public static new bool Equals (object objA, object objB)
  27. {
  28. throw new NotImplementedException ();
  29. }
  30. #endregion
  31. #region .ctor and Finalizer
  32. [MonoTODO]
  33. public XmlSecureResolver (
  34. XmlResolver resolver, Evidence evidence)
  35. {
  36. throw new NotImplementedException ();
  37. }
  38. [MonoTODO]
  39. public XmlSecureResolver (
  40. XmlResolver resolver, PermissionSet permissionSet)
  41. {
  42. throw new NotImplementedException ();
  43. }
  44. [MonoTODO]
  45. public XmlSecureResolver (
  46. XmlResolver resolver, string securityUrl)
  47. {
  48. throw new NotImplementedException ();
  49. }
  50. [MonoTODO]
  51. ~XmlSecureResolver ()
  52. {
  53. // What is expected here, not in Dispose() ?
  54. }
  55. #endregion
  56. #region Property
  57. [MonoTODO]
  58. public override ICredentials Credentials {
  59. set { throw new NotImplementedException (); }
  60. }
  61. #endregion
  62. #region Methods
  63. [MonoTODO]
  64. public override object GetEntity (
  65. Uri absoluteUri, string role, Type ofObjectToReturn)
  66. {
  67. throw new NotImplementedException ();
  68. }
  69. [MonoTODO]
  70. public override Uri ResolveUri ( Uri baseUri, string relativeUri)
  71. {
  72. throw new NotImplementedException ();
  73. }
  74. #endregion
  75. }
  76. }
  77. #endif