Class1.cs
上传用户:lxycoco
上传日期:2022-07-21
资源大小:38457k
文件大小:0k
源码类别:

C#编程

开发平台:

Others

  1. using System;
  2. using System.Runtime.Remoting.Messaging;
  3. namespace Wrox.ProCSharp.Remoting
  4. {
  5. [Serializable]
  6. public class CallContextData : ILogicalThreadAffinative
  7. {
  8. public CallContextData()
  9. {
  10. }
  11. public string Data
  12. {
  13. get
  14. {
  15. return data;
  16. }
  17. set
  18. {
  19. data = value;
  20. }
  21. }
  22. protected string data;
  23. }
  24. }