C# Class DBus.Unix.UnixStream

Inheritance: Stream
Show file Open project: brookpatten/dbus-sharp Class Usage Examples

Public Properties

Property Type Description
usock UnixSocket

Public Methods

Method Description
Flush ( ) : void
Read ( [ buffer, int offset, int count ) : int
ReadByte ( ) : int
ReceiveMessage ( ) : ReceivedMessage
Seek ( long offset, SeekOrigin origin ) : long
SetLength ( long value ) : void
UnixStream ( UnixSocket usock ) : System
UnixStream ( int fd ) : System
Write ( byte buffer, int offset, int count ) : void
WriteByte ( byte value ) : void

Method Details

Flush() public method

public Flush ( ) : void
return void

Read() public method

public Read ( [ buffer, int offset, int count ) : int
buffer [
offset int
count int
return int

ReadByte() public method

public ReadByte ( ) : int
return int

ReceiveMessage() public method

public ReceiveMessage ( ) : ReceivedMessage
return ReceivedMessage

Seek() public method

public Seek ( long offset, SeekOrigin origin ) : long
offset long
origin SeekOrigin
return long

SetLength() public method

public SetLength ( long value ) : void
value long
return void

UnixStream() public method

public UnixStream ( UnixSocket usock ) : System
usock UnixSocket
return System

UnixStream() public method

public UnixStream ( int fd ) : System
fd int
return System

Write() public method

public Write ( byte buffer, int offset, int count ) : void
buffer byte
offset int
count int
return void

WriteByte() public method

public WriteByte ( byte value ) : void
value byte
return void

Property Details

usock public property

public UnixSocket,DBus.Unix usock
return UnixSocket