Method | Description | |
---|---|---|
Show ( string text, Action |
Shows the specified text and awaits for the user to reply.
|
|
Show ( string text, string caption, Action |
Shows the specified text and caption and awaits for the user to reply.
|
|
Show ( string text, string caption, bool usePasswordMode, Action |
Shows the specified text and caption and awaits for the user to reply.
|
|
Show ( string text, string caption, string defaultText, Action |
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 |
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.
|
public Show ( string text, Action |
||
text | string | The message to display. |
textInputed | Action |
The |
return | void |
public Show ( string text, string caption, Action |
||
text | string | The message to display. |
caption | string | The title of the input box. |
textInputed | Action |
The |
return | void |
public Show ( string text, string caption, bool usePasswordMode, Action |
||
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 |
return | void |
public Show ( string text, string caption, string defaultText, Action |
||
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 |
return | void |
public Show ( string text, string caption, string defaultText, bool usePasswordMode, Action |
||
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 |
return | void |
public ShowAsync ( string text ) : Task |
||
text | string | The message to display. |
return | Task |
public ShowAsync ( string text, string caption ) : Task |
||
text | string | The message to display. |
caption | string | The title of the input box. |
return | Task |
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 |
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 |
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 |