C# Class FlatRedBall.Content.ErrorLogger

Custom implementation of the MSBuild ILogger interface records content build errors so we can later display them to the user.
Inheritance: ILogger
Afficher le fichier Open project: vchelaru/FlatRedBall Class Usage Examples

Private Properties

Свойство Type Description

Méthodes publiques

Méthode Description
ErrorRaised ( object sender, Microsoft.Build.Framework.BuildErrorEventArgs e ) : void

Handles error notification events by storing the error message string.

Initialize ( IEventSource eventSource ) : void

Initializes the custom logger, hooking the ErrorRaised notification event.

Shutdown ( ) : void

Shuts down the custom logger.

Method Details

ErrorRaised() public méthode

Handles error notification events by storing the error message string.
public ErrorRaised ( object sender, Microsoft.Build.Framework.BuildErrorEventArgs e ) : void
sender object
e Microsoft.Build.Framework.BuildErrorEventArgs
Résultat void

Initialize() public méthode

Initializes the custom logger, hooking the ErrorRaised notification event.
public Initialize ( IEventSource eventSource ) : void
eventSource IEventSource
Résultat void

Shutdown() public méthode

Shuts down the custom logger.
public Shutdown ( ) : void
Résultat void