TrackingServices.cs 643 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // System.Runtime.Remoting.Services.TrackingServices.cs
  3. //
  4. // Author:
  5. // Jaime Anguiano Olarra ([email protected])
  6. //
  7. // (C) 2002, Jaime Anguiano Olarra
  8. //
  9. // FIXME: This is just a skeleton for practical purpouses.
  10. //
  11. using System;
  12. using System.Runtime.Remoting;
  13. namespace System.Runtime.Remoting.Services
  14. {
  15. [MonoTODO]
  16. public class TrackingServices
  17. {
  18. public TrackingServices () {
  19. }
  20. public static void RegisterTrackingHandler (ITrackingHandler handler) {
  21. throw new NotImplementedException ();
  22. }
  23. public static void UnregisterTrackingHandler (ITrackingHandler handler) {
  24. throw new NotImplementedException ();
  25. }
  26. }
  27. }