C# Класс GooglePlayServices.CommandLineDialog

Наследование: TextAreaDialog
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
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