Interface INetworkStream
- Namespace
- FellowOakDicom.Network
- Assembly
- fo-dicom.core.dll
Interface representing a network stream.
public interface INetworkStream : IDisposable
- Inherited Members
- Extension Methods
Properties
LocalHost
Gets the local host of the network stream.
string LocalHost { get; }
Property Value
LocalPort
Gets the local port of the network stream.
int LocalPort { get; }
Property Value
RemoteHost
Gets the remote host of the network stream.
string RemoteHost { get; }
Property Value
RemotePort
Gets the remote port of the network stream.
int RemotePort { get; }
Property Value
Methods
AsStream()
Get corresponding Stream object.
Stream AsStream()