C# 클래스 Cimbalino.Phone.Toolkit.Services.InputBoxService

Represents an implementation of the IInputBoxService.
상속: IInputBoxService
파일 보기 프로젝트 열기: Cimbalino/Cimbalino-Phone-Toolkit

공개 메소드들

메소드 설명
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.

메소드 상세

Show() 공개 메소드

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.
리턴 void

Show() 공개 메소드

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.
리턴 void

Show() 공개 메소드

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.
리턴 void

Show() 공개 메소드

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.
리턴 void

Show() 공개 메소드

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.
리턴 void

ShowAsync() 공개 메소드

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

ShowAsync() 공개 메소드

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.
리턴 Task

ShowAsync() 공개 메소드

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.
리턴 Task

ShowAsync() 공개 메소드

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.
리턴 Task

ShowAsync() 공개 메소드

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.
리턴 Task