| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //
- // System.Runtime.Remoting.Channels.Http.HttpRemotingHandlerFactory
- //
- // Authors:
- // Martin Willemoes Hansen ([email protected])
- //
- // (C) 2003 Martin Willemoes Hansen
- //
- using System.Web;
- namespace System.Runtime.Remoting.Channels.Http
- {
- public class HttpRemotingHandlerFactory : IHttpHandlerFactory
- {
- [MonoTODO]
- public HttpRemotingHandlerFactory ()
- {
- }
- [MonoTODO]
- public IHttpHandler GetHandler (HttpContext context,
- string verb,
- string url,
- string filePath)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- public void ReleaseHandler (IHttpHandler handler)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- ~HttpRemotingHandlerFactory()
- {
- }
- }
- }
|