CallContext.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. //
  2. // System.Runtime.Remoting.Messaging.CallContext.cs
  3. //
  4. // Author: Jaime Anguiano Olarra ([email protected])
  5. //
  6. // (c) 2002, Jaime Anguiano Olarra
  7. //
  8. // FIXME: This is just a skeleton for practical purposes.
  9. ///<summary>
  10. ///Provides several properties that come with the execution code path.
  11. ///This class is sealed.
  12. ///</summary>
  13. using System;
  14. namespace System.Runtime.Remoting.Messaging
  15. {
  16. [Serializable]
  17. public sealed class CallContext
  18. {
  19. // public methods
  20. [MonoTODO]
  21. public static void FreeNamedDataSlot (string name)
  22. {
  23. throw new NotImplementedException ();
  24. }
  25. [MonoTODO]
  26. public static object GetData (string name)
  27. {
  28. throw new NotImplementedException ();
  29. }
  30. [MonoTODO]
  31. public static Header[] GetHeaders ()
  32. {
  33. throw new NotImplementedException ();
  34. }
  35. [MonoTODO]
  36. public static void SetData (string name, object data)
  37. {
  38. throw new NotImplementedException ();
  39. }
  40. [MonoTODO]
  41. public static void SetHeaders (Header[] headers)
  42. {
  43. throw new NotImplementedException ();
  44. }
  45. }
  46. }