C# Class GitScc.Blinkbox.NotificationService

Writes messages to the Pending changes window.
Inheritance: IDisposable
Afficher le fichier Open project: blinkbox/Git-Source-Control-Provider Class Usage Examples

Private Properties

Свойство Type Description
ProcessMessages void
WriteMessageQueue void

Méthodes publiques

Méthode Description
AddMessage ( string message ) : void

Writes a message into our output pane.

ClearMessages ( ) : void

Clears the output pane.

DisplayError ( string title, string message ) : void

Displays an error in a message box.

DisplayException ( Exception e, string title = null, string message = null ) : void

Displays the exception.

DisplayMessage ( string title, string message ) : void

Displays a message in a message box.

Dispose ( ) : void

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

NewSection ( string name ) : void

Writes a new section to the output window.

NotificationService ( ) : System

Initializes a new instance of the NotificationService class.

Private Methods

Méthode Description
ProcessMessages ( ) : void

Periodically checks for messages and writes them to the output window.

WriteMessageQueue ( ) : void

Writes all mesages in the queue to the output window.

Method Details

AddMessage() public méthode

Writes a message into our output pane.
public AddMessage ( string message ) : void
message string Message to write.
Résultat void

ClearMessages() public méthode

Clears the output pane.
public ClearMessages ( ) : void
Résultat void

DisplayError() public static méthode

Displays an error in a message box.
public static DisplayError ( string title, string message ) : void
title string The title.
message string The message.
Résultat void

DisplayException() public static méthode

Displays the exception.
public static DisplayException ( Exception e, string title = null, string message = null ) : void
e System.Exception The exception.
title string The title.
message string The message.
Résultat void

DisplayMessage() public static méthode

Displays a message in a message box.
public static DisplayMessage ( string title, string message ) : void
title string The title.
message string The message.
Résultat void

Dispose() public méthode

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
public Dispose ( ) : void
Résultat void

NewSection() public méthode

Writes a new section to the output window.
public NewSection ( string name ) : void
name string /// The name. ///
Résultat void

NotificationService() public méthode

Initializes a new instance of the NotificationService class.
public NotificationService ( ) : System
Résultat System