Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
859 B

  1. //**************************************************
  2. // *** ASP Trace Data Layout
  3. //**************************************************
  4. #pragma classflags("forceupdate")
  5. #pragma namespace ("\\\\.\\Root\\WMI")
  6. [Dynamic,
  7. Description("IIS: Active Server Pages (ASP)") : amended,
  8. Guid("{06b94d9a-b15e-456e-a4ef-37c984a2cb4b}"),
  9. locale("MS\\0x409")]
  10. class ASP_Trace:EventTrace
  11. {
  12. };
  13. [Dynamic,
  14. Description("ASP Request") : amended,
  15. Guid("{1fc299fa-3fc4-4c37-910d-de5b911d0270}"),
  16. DisplayName("AspReq"),
  17. locale("MS\\0x409")
  18. ]
  19. class ASP_Trans:ASP_Trace
  20. {
  21. };
  22. [Dynamic,
  23. Description("ASP Request Types") : amended,
  24. EventType{1, 2},
  25. EventTypeName{"Start", "End"} : amended
  26. ]
  27. class AspRequest:ASP_Trans
  28. {
  29. [WmiDataId(1),
  30. Description("ConnID") : amended,
  31. pointer,
  32. read]
  33. uint32 ConnID;
  34. };