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

C#编程

开发平台:

Others

  1. using System;
  2. using System.EnterpriseServices;
  3. namespace Wrox.ProCSharp.EnterpriseServices
  4. {
  5. public interface IGreeting
  6. {
  7. string Welcome(string name);
  8. }
  9. [Description("Simple Serviced Component Sample")]
  10. [EventTrackingEnabled(true)]
  11. public class SimpleComponent : ServicedComponent, IGreeting
  12. {
  13. public SimpleComponent()
  14. {
  15. }
  16. #region IGreeting Members
  17. public string Welcome(string name)
  18. {
  19. // simulate some processing time
  20. System.Threading.Thread.Sleep(1000);
  21. return "Hello, " + name;
  22. }
  23. #endregion
  24. }
  25. }