2
0

RemotingService.cs 932 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. //
  2. // System.Runtime.Remoting.Services.RemotingService.cs
  3. //
  4. // Author: Lluis Sanchez Gual ([email protected])
  5. //
  6. // 2004 (C) Copyright, Novell, Inc.
  7. //
  8. using System;
  9. using System.ComponentModel;
  10. using System.Web;
  11. using System.Web.SessionState;
  12. using System.Security.Principal;
  13. namespace System.Runtime.Remoting.Services
  14. {
  15. public class RemotingService: Component
  16. {
  17. public RemotingService ()
  18. {
  19. }
  20. [MonoTODO]
  21. public HttpApplicationState Application
  22. {
  23. get { throw new NotImplementedException (); }
  24. }
  25. [MonoTODO]
  26. public HttpContext Context
  27. {
  28. get { throw new NotImplementedException (); }
  29. }
  30. [MonoTODO]
  31. public HttpServerUtility Server
  32. {
  33. get { throw new NotImplementedException (); }
  34. }
  35. [MonoTODO]
  36. public HttpSessionState Session
  37. {
  38. get { throw new NotImplementedException (); }
  39. }
  40. [MonoTODO]
  41. public IPrincipal User
  42. {
  43. get { throw new NotImplementedException (); }
  44. }
  45. }
  46. }