C# 클래스 GooglePlayServices.CommandLineDialog

상속: TextAreaDialog
파일 보기 프로젝트 열기: googlesamples/unity-jar-resolver 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
autoScrollToBottom bool
progress float
progressSummary string
progressTitle string

공개 메소드들

메소드 설명
CreateCommandLineDialog ( string title ) : CommandLineDialog

Create a dialog box which can display command line output.

Initialize ( ) : void

Initialize all members of the window.

RunAsync ( string toolPath, string arguments, CommandLine completionDelegate, string workingDirectory = null, string>.Dictionary envVars = null, CommandLine ioHandler = null, int maxProgressLines ) : void

Asynchronously execute a command line tool in this window, showing progress and finally calling the specified delegate on completion from the main / UI thread.

보호된 메소드들

메소드 설명
Update ( ) : void

Call the update event from the UI thread, optionally display / hide the progress bar.

메소드 상세

CreateCommandLineDialog() 공개 정적인 메소드

Create a dialog box which can display command line output.
public static CreateCommandLineDialog ( string title ) : CommandLineDialog
title string
리턴 CommandLineDialog

Initialize() 공개 메소드

Initialize all members of the window.
public Initialize ( ) : void
리턴 void

RunAsync() 공개 메소드

Asynchronously execute a command line tool in this window, showing progress and finally calling the specified delegate on completion from the main / UI thread.
public RunAsync ( string toolPath, string arguments, CommandLine completionDelegate, string workingDirectory = null, string>.Dictionary envVars = null, CommandLine ioHandler = null, int maxProgressLines ) : void
toolPath string Tool to execute.
arguments string String to pass to the tools' command line.
completionDelegate CommandLine Called when the tool completes.
workingDirectory string Directory to execute the tool from.
envVars string>.Dictionary
ioHandler CommandLine Allows a caller to provide interactive input and also handle /// both output and error streams from a single delegate.
maxProgressLines int Specifies the number of lines output by the /// command line that results in a 100% value on a progress bar.
리턴 void

Update() 보호된 메소드

Call the update event from the UI thread, optionally display / hide the progress bar.
protected Update ( ) : void
리턴 void

프로퍼티 상세

autoScrollToBottom 공개적으로 프로퍼티

public bool autoScrollToBottom
리턴 bool

progress 공개적으로 프로퍼티

public float progress
리턴 float

progressSummary 공개적으로 프로퍼티

public string progressSummary
리턴 string

progressTitle 공개적으로 프로퍼티

public string progressTitle
리턴 string