public ProfilingEventPush(int threadId, CallerInfo callerInfo, long ticks) : base(ticks) { ThreadId = threadId; CallerInfo = callerInfo; }
public static ProfilingEventPush Push(int threadId, CallerInfo callerInfo, long startTicks) { return(new ProfilingEventPush(threadId, callerInfo, startTicks)); }