Class AdvancedDicomClientConnectionRequest
- Namespace
- FellowOakDicom.Network.Client.Advanced.Connection
- Assembly
- fo-dicom.core.dll
Contains all the knobs and bells needed to open a new connection to a DICOM AE
public class AdvancedDicomClientConnectionRequest
- Inheritance
-
AdvancedDicomClientConnectionRequest
- Inherited Members
- Extension Methods
Properties
DicomServiceOptions
Configures the DICOM listener
public DicomServiceOptions DicomServiceOptions { get; set; }
Property Value
FallbackEncoding
The encoding that will be used as a fallback if no encoding can be derived from the DICOM dataset
public Encoding FallbackEncoding { get; set; }
Property Value
Logger
The logger that will be used by the DICOM listener
public ILogger Logger { get; set; }
Property Value
NetworkStreamCreationOptions
Configures how to open the TCP connection
public NetworkStreamCreationOptions NetworkStreamCreationOptions { get; set; }
Property Value
RequestHandlers
The request handlers that will handle reverse requests. For example, issuing a C-GET request will cause the other AE to send a C-STORE request back over the same association. The C-STORE request handler configured here will be responsible for producing a C-STORE response
public AdvancedDicomClientConnectionRequestHandlers RequestHandlers { get; set; }