Class DicomCFindResponse
Representation of a C-FIND response.
Inherited Members
Namespace: Dicom.Network
Assembly: cs.temp.dll.dll
Syntax
public sealed class DicomCFindResponse : DicomResponse
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.
Declaration
public DicomCFindResponse(DicomDataset command)
Parameters
Type | Name | Description |
---|---|---|
DicomDataset | command | Command associated with the C-FIND response. |
DicomCFindResponse(DicomCFindRequest, DicomStatus)
Initializes an instance of the DicomCFindResponse class.
Declaration
public DicomCFindResponse(DicomCFindRequest request, DicomStatus status)
Parameters
Type | Name | Description |
---|---|---|
DicomCFindRequest | request | C-FIND request for which the response should be made. |
DicomStatus | status | Response status. |
Properties
Completed
Gets or sets the number of completed sub-operations.
Declaration
public int Completed { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
Failures
Gets or sets the number of failed sub-operations.
Declaration
public int Failures { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
Remaining
Gets or sets the number of remaining sub-operations.
Declaration
public int Remaining { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
Warnings
Gets or sets the number of warning sub-operations.
Declaration
public int Warnings { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
Methods
ToString()
Formatted output of the DICOM response.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
String | The formatted output of the DICOM response. |