C# Class GooglePlayServices.CommandLine.StreamData

Text and byte representations of an array of data.
Afficher le fichier Open project: googlesamples/unity-jar-resolver Class Usage Examples

Méthodes publiques

Свойство Type Description
data byte[]
end bool
handle int
text string

Méthodes publiques

Méthode Description
StreamData ( int handle, string text, byte data, bool end ) : System.Collections.Generic

Initialize this instance.

Method Details

StreamData() public méthode

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.
Résultat System.Collections.Generic

Property Details

data public_oe property

Array of bytes or "null" if no data is present.
public byte[] data
Résultat byte[]

end public_oe property

Whether this marks the end of the stream.
public bool end
Résultat bool

handle public_oe property

Handle to the stream this was read from. e.g 0 for stdout, 1 for stderr.
public int handle
Résultat int

text public_oe property

Text representation of "data".
public string text
Résultat string