Class DicomCFindResponse
- Namespace
- FellowOakDicom.Network
- Assembly
- fo-dicom.core.dll
Representation of a C-FIND response.
public sealed class DicomCFindResponse : DicomResponse
- Inheritance
-
DicomCFindResponse
- Inherited Members
- Extension Methods
Remarks
For completeness, a C-FIND response with status Success should contain a Dataset describing the result(s) of the C-FIND request.
Constructors
DicomCFindResponse(DicomDataset)
Initializes an instance of the DicomCFindResponse class.
public DicomCFindResponse(DicomDataset command)
Parameters
command
DicomDatasetCommand associated with the C-FIND response.
DicomCFindResponse(DicomCFindRequest, DicomStatus)
Initializes an instance of the DicomCFindResponse class.
public DicomCFindResponse(DicomCFindRequest request, DicomStatus status)
Parameters
request
DicomCFindRequestC-FIND request for which the response should be made.
status
DicomStatusResponse status.
Properties
Completed
Gets or sets the number of completed sub-operations.
public int Completed { get; set; }
Property Value
Failures
Gets or sets the number of failed sub-operations.
public int Failures { get; set; }
Property Value
Remaining
Gets or sets the number of remaining sub-operations.
public int Remaining { get; set; }
Property Value
Warnings
Gets or sets the number of warning sub-operations.
public int Warnings { get; set; }
Property Value
Methods
ToString()
Formatted output of the DICOM response.
public override string ToString()
Returns
- string
The formatted output of the DICOM response.