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

C#编程

开发平台:

Others

  1. using System;
  2. using System.Runtime.Remoting.Messaging;
  3. namespace Wrox.ProCSharp.Remoting
  4. {
  5. public class Hello : System.MarshalByRefObject
  6. {
  7. public Hello()
  8. {
  9. Console.WriteLine("Constructor called");
  10. }
  11. public string Greeting(string name)
  12. {
  13. Console.WriteLine("Greeting started");
  14. CallContextData cookie =
  15. (CallContextData)CallContext.GetData("mycookie");
  16. if (cookie != null)
  17. {
  18. Console.WriteLine("Cookie: " + cookie.Data);
  19. }
  20. Console.WriteLine("Greeting finished");
  21. return "Hello, " + name;
  22. }
  23. }
  24. }