C# Class Cimbalino.Phone.Toolkit.Services.InputBoxService

Represents an implementation of the IInputBoxService.
Inheritance: IInputBoxService
Show file Open project: Cimbalino/Cimbalino-Phone-Toolkit

Public Methods

Method Description
Show ( string text, Action textInputed ) : void

Shows the specified text and awaits for the user to reply.

Show ( string text, string caption, Action textInputed ) : void

Shows the specified text and caption and awaits for the user to reply.

Show ( string text, string caption, bool usePasswordMode, Action textInputed ) : void

Shows the specified text and caption and awaits for the user to reply.

Show ( string text, string caption, string defaultText, Action textInputed ) : void

Shows the specified text, caption and default input text, and awaits for the user to reply.

Show ( string text, string caption, string defaultText, bool usePasswordMode, Action textInputed ) : void

Shows the specified text, caption and default input text, and awaits for the user to reply.

ShowAsync ( string text ) : Task

Shows the specified text and awaits for the user to reply.

ShowAsync ( string text, string caption ) : Task

Shows the specified text and caption and awaits for the user to reply.

ShowAsync ( string text, string caption, bool usePasswordMode ) : Task

Shows the specified text and caption and awaits for the user to reply.

ShowAsync ( string text, string caption, string defaultText ) : Task

Shows the specified text, caption and default input text, and awaits for the user to reply.

ShowAsync ( string text, string caption, string defaultText, bool usePasswordMode ) : Task

Shows the specified text, caption and default input text, and awaits for the user to reply.

Method Details

Show() public method

Shows the specified text and awaits for the user to reply.
public Show ( string text, Action textInputed ) : void
text string The message to display.
textInputed Action The to be called once the operation is finished.
return void

Show() public method

Shows the specified text and caption and awaits for the user to reply.
public Show ( string text, string caption, Action textInputed ) : void
text string The message to display.
caption string The title of the input box.
textInputed Action The to be called once the operation is finished.
return void

Show() public method

Shows the specified text and caption and awaits for the user to reply.
public Show ( string text, string caption, bool usePasswordMode, Action textInputed ) : void
text string The message to display.
caption string The title of the input box.
usePasswordMode bool true if password mode is enabled; otherwise, false.
textInputed Action The to be called once the operation is finished.
return void

Show() public method

Shows the specified text, caption and default input text, and awaits for the user to reply.
public Show ( string text, string caption, string defaultText, Action textInputed ) : void
text string The message to display.
caption string The title of the input box.
defaultText string The default text displayed in the input area when the interface dialog box is first shown.
textInputed Action The to be called once the operation is finished.
return void

Show() public method

Shows the specified text, caption and default input text, and awaits for the user to reply.
public Show ( string text, string caption, string defaultText, bool usePasswordMode, Action textInputed ) : void
text string The message to display.
caption string The title of the input box.
defaultText string The default text displayed in the input area when the interface dialog box is first shown.
usePasswordMode bool true if password mode is enabled; otherwise, false.
textInputed Action The to be called once the operation is finished.
return void

ShowAsync() public method

Shows the specified text and awaits for the user to reply.
public ShowAsync ( string text ) : Task
text string The message to display.
return Task

ShowAsync() public method

Shows the specified text and caption and awaits for the user to reply.
public ShowAsync ( string text, string caption ) : Task
text string The message to display.
caption string The title of the input box.
return Task

ShowAsync() public method

Shows the specified text and caption and awaits for the user to reply.
public ShowAsync ( string text, string caption, bool usePasswordMode ) : Task
text string The message to display.
caption string The title of the input box.
usePasswordMode bool true if password mode is enabled; otherwise, false.
return Task

ShowAsync() public method

Shows the specified text, caption and default input text, and awaits for the user to reply.
public ShowAsync ( string text, string caption, string defaultText ) : Task
text string The message to display.
caption string The title of the input box.
defaultText string The default text displayed in the input area when the interface dialog box is first shown.
return Task

ShowAsync() public method

Shows the specified text, caption and default input text, and awaits for the user to reply.
public ShowAsync ( string text, string caption, string defaultText, bool usePasswordMode ) : Task
text string The message to display.
caption string The title of the input box.
defaultText string The default text displayed in the input area when the interface dialog box is first shown.
usePasswordMode bool true if password mode is enabled; otherwise, false.
return Task