LogicalCallContext.cs 769 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //
  2. // System.Runtime.Remoting.Messaging.LogicalCallContext.cs
  3. //
  4. // Author:
  5. // Dan Lewis ([email protected])
  6. //
  7. // (C) 2002
  8. //
  9. // Stubbed.
  10. //
  11. using System.Runtime.Serialization;
  12. namespace System.Runtime.Remoting.Messaging {
  13. [MonoTODO]
  14. [Serializable]
  15. public sealed class LogicalCallContext : ISerializable, ICloneable {
  16. internal LogicalCallContext () {}
  17. public bool HasInfo {
  18. get { return false; }
  19. }
  20. public void FreeNamedDataSlot (string name) {
  21. }
  22. public object GetData (string name) {
  23. return null;
  24. }
  25. public void GetObjectData (SerializationInfo info, StreamingContext context) {
  26. }
  27. public void SetData (string name, object data) {
  28. }
  29. public object Clone () {
  30. return null;
  31. }
  32. }
  33. }