| 12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // System.Runtime.Remoting.Channels.Http.HttpRemotingHandler
- //
- // Authors:
- // Martin Willemoes Hansen ([email protected])
- //
- // (C) 2003 Martin Willemoes Hansen
- //
- using System.Web;
- namespace System.Runtime.Remoting.Channels.Http
- {
- public class HttpRemotingHandler : IHttpHandler
- {
- [MonoTODO]
- public HttpRemotingHandler()
- {
- }
- public bool IsReusable {
- [MonoTODO]
- get { throw new NotImplementedException(); }
- }
- [MonoTODO]
- public void ProcessRequest (HttpContext context)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- ~HttpRemotingHandler()
- {
- }
- }
- }
|