Interface ITransport
Represents an open transport through which bytes to/from the server can be sent and received.
Namespace: MarcusW.VncClient.Protocol
Assembly: MarcusW.VncClient.dll
Syntax
public interface ITransport : IDisposable
Remarks
You can build a ITransport which contains another transport to implement tunnel protocols.
Properties
| Improve this Doc View SourceIsEncrypted
Gets whether the data on this transport gets encrypted.
Declaration
bool IsEncrypted { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
Stream
Gets the stream for sending and receiving bytes.
Declaration
Stream Stream { get; }
Property Value
Type | Description |
---|---|
Stream |