Interface INetworkStream
Interface representing a network stream.
Inherited Members
System.IDisposable.Dispose()
Namespace: FellowOakDicom.Network
Assembly: fo-dicom.core.dll
Syntax
public interface INetworkStream : IDisposable
Properties
LocalHost
Gets the local host of the network stream.
Declaration
string LocalHost { get; }
Property Value
Type | Description |
---|---|
System.String |
LocalPort
Gets the local port of the network stream.
Declaration
int LocalPort { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
RemoteHost
Gets the remote host of the network stream.
Declaration
string RemoteHost { get; }
Property Value
Type | Description |
---|---|
System.String |
RemotePort
Gets the remote port of the network stream.
Declaration
int RemotePort { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Methods
AsStream()
Get corresponding System.IO.Stream object.
Declaration
Stream AsStream()
Returns
Type | Description |
---|---|
System.IO.Stream | Network stream as System.IO.Stream object. |