| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- //
- // System.Runtime.Remoting.Services.RemotingService.cs
- //
- // Author: Lluis Sanchez Gual ([email protected])
- //
- // 2004 (C) Copyright, Novell, Inc.
- //
- using System;
- using System.ComponentModel;
- using System.Web;
- using System.Web.SessionState;
- using System.Security.Principal;
- namespace System.Runtime.Remoting.Services
- {
- public class RemotingService: Component
- {
- public RemotingService ()
- {
- }
-
- [MonoTODO]
- public HttpApplicationState Application
- {
- get { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
- public HttpContext Context
- {
- get { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
- public HttpServerUtility Server
- {
- get { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
- public HttpSessionState Session
- {
- get { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
- public IPrincipal User
- {
- get { throw new NotImplementedException (); }
- }
- }
- }
|