Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 954 Bytes

File metadata and controls

22 lines (15 loc) · 954 Bytes

IMessageBoxService interface

Provides a set of methods to show Error, Info or Warning message boxes.

public interface IMessageBoxService

Members

name description
ShowError(…) Shows a message box with an error icon and the message provided. It can also support extra information.
ShowInformation(…) Shows a message box with an information icon and the message provided.
ShowQuestion(…) Shows a message box with a question icon and the question provided.
ShowWarning(…) Shows a message box with a warning icon and the message provided.

See Also