1 type derived from NodeLoggingEvent
Microsoft.Build.Engine (1)
Engine\NodeLoggingEvent.cs (1)
293internal class NodeLoggingEventWithLoggerId : NodeLoggingEvent
2 instantiations of NodeLoggingEvent
Microsoft.Build.Engine (2)
Engine\EngineLoggingServicesOutProc.cs (1)
75AddToCurrentArray(new NodeLoggingEvent(buildEventArgs));
LocalProvider\LocalCallDescriptor.cs (1)
481e = new NodeLoggingEvent();
23 references to NodeLoggingEvent
Microsoft.Build.Engine (23)
Engine\EngineCallback.cs (1)
364public void PostLoggingMessagesToHost(int nodeId, NodeLoggingEvent[] nodeLoggingEventArray)
Engine\EngineLoggingServices.cs (4)
40this.loggingQueueOfNodeEvents = new DualQueue<NodeLoggingEvent>(); 142internal void PostLoggingEvent(NodeLoggingEvent e) 166internal void PostLoggingEvents(NodeLoggingEvent[] eventArray) 990protected DualQueue<NodeLoggingEvent> loggingQueueOfNodeEvents;
Engine\EngineLoggingServicesInProc.cs (1)
64NodeLoggingEvent nodeLoggingEvent;
Engine\EngineLoggingServicesOutProc.cs (7)
41this.eventArray = new NodeLoggingEvent[eventArrayChunkSize]; 80NodeLoggingEvent nodeLoggingEvent = null; 90NodeLoggingEvent[] trimmedEventArray = new NodeLoggingEvent[current]; 105private void AddToCurrentArray(NodeLoggingEvent e) 113eventArray = new NodeLoggingEvent[eventArrayChunkSize]; 156private NodeLoggingEvent[] eventArray;
Engine\IEngineCallback.cs (1)
34void PostLoggingMessagesToHost(int nodeId, NodeLoggingEvent[] nodeLoggingEventArray);
Engine\Node.cs (1)
191internal void PostLoggingMessagesToHost(NodeLoggingEvent[] nodeLoggingEvents)
LocalProvider\LocalCallDescriptor.cs (7)
419internal LocalCallDescriptorForPostLoggingMessagesToHost(NodeLoggingEvent[] buildEvents) 434private NodeLoggingEvent[] buildEvents; 439internal NodeLoggingEvent[] BuildEvents 455foreach (NodeLoggingEvent nodeEvent in buildEvents) 457if (nodeEvent.GetType() == typeof(NodeLoggingEvent)) 474buildEvents = new NodeLoggingEvent[numberOfNodeEvents]; 478NodeLoggingEvent e;
LocalProvider\LocalNodeCallback.cs (1)
226public void PostLoggingMessagesToHost(int nodeProviderId, NodeLoggingEvent[] nodeLoggingEventArray)