EventSource.cs 798 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. namespace System.Diagnostics.Tracing
  2. {
  3. partial class EventSource
  4. {
  5. private static readonly bool m_EventSourcePreventRecursion = false;
  6. public static void SetCurrentThreadActivityId (Guid activityId)
  7. {
  8. }
  9. public static void SetCurrentThreadActivityId (Guid activityId, out Guid oldActivityThatWillContinue)
  10. {
  11. throw new NotImplementedException ();
  12. }
  13. public static Guid CurrentThreadActivityId {
  14. get {
  15. throw new NotImplementedException ();
  16. }
  17. }
  18. private int GetParameterCount (EventMetadata eventData)
  19. {
  20. return 0;
  21. }
  22. private Type GetDataType (EventMetadata eventData, int parameterId)
  23. {
  24. return null;
  25. }
  26. }
  27. internal partial class ManifestBuilder
  28. {
  29. private string GetTypeNameHelper (Type type)
  30. {
  31. throw new NotImplementedException ();
  32. }
  33. }
  34. }