C# Class GooglePlayServices.CommandLine.StreamData

Text and byte representations of an array of data.
显示文件 Open project: googlesamples/unity-jar-resolver Class Usage Examples

Public Properties

Property Type Description
data byte[]
end bool
handle int
text string

Public Methods

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

Initialize this instance.

Method Details

StreamData() public method

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.
return System.Collections.Generic

Property Details

data public_oe property

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

end public_oe property

Whether this marks the end of the stream.
public bool end
return bool

handle public_oe property

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

text public_oe property

Text representation of "data".
public string text
return string