C# Класс GooglePlayServices.CommandLine.StreamData

Text and byte representations of an array of data.
Показать файл Открыть проект Примеры использования класса

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

Свойство Тип Описание
data byte[]
end bool
handle int
text string

Открытые методы

Метод Описание
StreamData ( int handle, string text, byte data, bool end ) : System.Collections.Generic

Initialize this instance.

Описание методов

StreamData() публичный Метод

Initialize this instance.
public StreamData ( int handle, string text, byte data, bool end ) : System.Collections.Generic
handle int Stream identifier.
text string String
data byte Bytes
end bool Whether this is the end of the stream.
Результат System.Collections.Generic

Описание свойств

data публичное свойство

Array of bytes or "null" if no data is present.
public byte[] data
Результат byte[]

end публичное свойство

Whether this marks the end of the stream.
public bool end
Результат bool

handle публичное свойство

Handle to the stream this was read from. e.g 0 for stdout, 1 for stderr.
public int handle
Результат int

text публичное свойство

Text representation of "data".
public string text
Результат string