Table of Contents

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

string

LocalPort

Gets the local port of the network stream.

int LocalPort { get; }

Property Value

int

RemoteHost

Gets the remote host of the network stream.

string RemoteHost { get; }

Property Value

string

RemotePort

Gets the remote port of the network stream.

int RemotePort { get; }

Property Value

int

Methods

AsStream()

Get corresponding Stream object.

Stream AsStream()

Returns

Stream

Network stream as Stream object.