C# 클래스 GitScc.Blinkbox.NotificationService

Writes messages to the Pending changes window.
상속: IDisposable
파일 보기 프로젝트 열기: blinkbox/Git-Source-Control-Provider 1 사용 예제들

Private Properties

프로퍼티 타입 설명
ProcessMessages void
WriteMessageQueue void

공개 메소드들

메소드 설명
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.

비공개 메소드들

메소드 설명
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.

메소드 상세

AddMessage() 공개 메소드

Writes a message into our output pane.
public AddMessage ( string message ) : void
message string Message to write.
리턴 void

ClearMessages() 공개 메소드

Clears the output pane.
public ClearMessages ( ) : void
리턴 void

DisplayError() 공개 정적인 메소드

Displays an error in a message box.
public static DisplayError ( string title, string message ) : void
title string The title.
message string The message.
리턴 void

DisplayException() 공개 정적인 메소드

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.
리턴 void

DisplayMessage() 공개 정적인 메소드

Displays a message in a message box.
public static DisplayMessage ( string title, string message ) : void
title string The title.
message string The message.
리턴 void

Dispose() 공개 메소드

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

NewSection() 공개 메소드

Writes a new section to the output window.
public NewSection ( string name ) : void
name string /// The name. ///
리턴 void

NotificationService() 공개 메소드

Initializes a new instance of the NotificationService class.
public NotificationService ( ) : System
리턴 System