Interaction

Wisej.Web.VisualBasic.Interaction

Namespace: Wisej.Web.VisualBasic

Assembly: Wisej.Framework (3.5.0.0)

Replaces the visual methods in Microsoft.VisualBasic.Interaction.

public class Interaction

In Visual Basic and C#, you can call this method as an instance method on any object of type Object. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

Methods

Sounds a tone through the computer's speaker.

Displays a prompt in a dialog box, waits for the user to input text or click a button, and then returns a string containing the contents of the text box.

Returns: String. The contents of the text box.

Asynchronous displays a prompt in a dialog box, waits for the user to input text or click a button, and then returns a string containing the contents of the text box.

Returns: Task<String>. The contents of the text box.

Displays a message in a dialog box, waits for the user to click a button, and then returns an integer indicating which button the user clicked.

Returns: MsgBoxResult. One of MsgBoxResult.

Asynchronously displays a message in a dialog box, waits for the user to click a button, and then returns an integer indicating which button the user clicked.

Returns: Task<MsgBoxResult>. One of MsgBoxResult.

Last updated