| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- #if USE_VERSION_1_0
- #endif
- #if USE_VERSION_1_1
- //
- // System.Xml.XmlSecureResolver.cs
- //
- // Author: Atsushi Enomoto ([email protected])
- //
- // (C) 2003 Atsushi Enomoto
- //
- using System;
- using System.Net;
- using System.Security;
- using System.Security.Policy;
- namespace System.Xml
- {
- public class XmlSecureResolver : XmlResolver
- {
- #region Static Members
- [MonoTODO]
- public static Evidence CreateEvidenceForUrl (string securityUrl)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static new bool Equals (object objA, object objB)
- {
- throw new NotImplementedException ();
- }
- #endregion
- #region .ctor and Finalizer
- [MonoTODO]
- public XmlSecureResolver (
- XmlResolver resolver, Evidence evidence)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public XmlSecureResolver (
- XmlResolver resolver, PermissionSet permissionSet)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public XmlSecureResolver (
- XmlResolver resolver, string securityUrl)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- ~XmlSecureResolver ()
- {
- // What is expected here, not in Dispose() ?
- }
- #endregion
- #region Property
- [MonoTODO]
- public override ICredentials Credentials {
- set { throw new NotImplementedException (); }
- }
- #endregion
- #region Methods
- [MonoTODO]
- public override object GetEntity (
- Uri absoluteUri, string role, Type ofObjectToReturn)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override Uri ResolveUri ( Uri baseUri, string relativeUri)
- {
- throw new NotImplementedException ();
- }
- #endregion
- }
- }
- #endif
|