2
0

StateRuntime.cs 573 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // System.Web.SessionState.StateRuntime.cs
  3. //
  4. // Author:
  5. // Andreas Nahr ([email protected])
  6. //
  7. // (C) 2003 Andreas Nahr
  8. //
  9. namespace System.Web.SessionState
  10. {
  11. public sealed class StateRuntime : IStateRuntime
  12. {
  13. [MonoTODO]
  14. public void ProcessRequest (IntPtr tracker, int verb,
  15. string uri, int exclusive, int timeout,
  16. int lockCookieExists, int lockCookie,
  17. int contentLength, IntPtr content)
  18. {
  19. throw new NotImplementedException ();
  20. }
  21. [MonoTODO]
  22. public void StopProcessing ()
  23. {
  24. throw new NotImplementedException ();
  25. }
  26. }
  27. }