本文整理汇总了C#中TraceEvent.Clone方法的典型用法代码示例。如果您正苦于以下问题:C# TraceEvent.Clone方法的具体用法?C# TraceEvent.Clone怎么用?C# TraceEvent.Clone使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TraceEvent
的用法示例。
在下文中一共展示了TraceEvent.Clone方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ProcessUnhandledEvent
private void ProcessUnhandledEvent(TraceEvent ev)
{
if (ev.ProviderGuid == Guid.Empty)
{
++this.UnreadableEvents;
return;
}
Queue<TraceEvent> eventList = null;
if (this.MaximumBufferTimeForUnknownEvents != TimeSpan.Zero)
{
this.UnhandledEvents.TryGetValue(ev.ProviderGuid, out eventList);
}
if (ev.ID == DynamicTraceEventParser.ManifestEventID)
{
// For manifest IDs if we found a provider (meaning this was the final manifest event needed to
// create the provider) then we can reprocess any unknown events. In any case we do not pass manifest
// events up to our own users because they are unlikely to be particularly useful on their own -- if
// in future users want to capture manifests when they are emitted we could trigger a specific event
// with the full manifest payload here. Nobody needs that today, though.
if (eventList != null)
{
this.UnhandledEvents.Remove(ev.ProviderGuid);
this.ReprocessUnhandledEvents(eventList);
}
return;
}
if (this.MaximumBufferTimeForUnknownEvents != TimeSpan.Zero)
{
if (eventList == null)
{
eventList = new Queue<TraceEvent>();
this.UnhandledEvents[ev.ProviderGuid] = eventList;
}
while (eventList.Count > 0
&& ev.TimeStamp - eventList.Peek().TimeStamp > this.MaximumBufferTimeForUnknownEvents)
{
eventList.Dequeue();
}
eventList.Enqueue(ev.Clone());
}
}