C# 클래스 System.Waf.UnitTesting.Mocks.MockMessageService

상속: IMessageService
파일 보기 프로젝트 열기: jbe2277/waf

공개 메소드들

메소드 설명
Clear ( ) : void

Clears the last remembered message.

ShowError ( object owner, string message ) : void

Shows the message as error.

ShowMessage ( object owner, string message ) : void

Shows the message.

ShowQuestion ( object owner, string message ) : bool?

Shows the specified question.

ShowWarning ( object owner, string message ) : void

Shows the message as warning.

ShowYesNoQuestion ( object owner, string message ) : bool

Shows the specified yes/no question.

메소드 상세

Clear() 공개 메소드

Clears the last remembered message.
public Clear ( ) : void
리턴 void

ShowError() 공개 메소드

Shows the message as error.
public ShowError ( object owner, string message ) : void
owner object The window that owns this Message Window.
message string The message.
리턴 void

ShowMessage() 공개 메소드

Shows the message.
public ShowMessage ( object owner, string message ) : void
owner object The window that owns this Message Window.
message string The message.
리턴 void

ShowQuestion() 공개 메소드

Shows the specified question.
public ShowQuestion ( object owner, string message ) : bool?
owner object The window that owns this Message Window.
message string The question.
리턴 bool?

ShowWarning() 공개 메소드

Shows the message as warning.
public ShowWarning ( object owner, string message ) : void
owner object The window that owns this Message Window.
message string The message.
리턴 void

ShowYesNoQuestion() 공개 메소드

Shows the specified yes/no question.
public ShowYesNoQuestion ( object owner, string message ) : bool
owner object The window that owns this Message Window.
message string The question.
리턴 bool