Class DicomNGetRequest
Representation of an N-GET request.
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: FellowOakDicom.Network
Assembly: fo-dicom.core.dll
Syntax
public sealed class DicomNGetRequest : DicomRequest
Constructors
DicomNGetRequest(DicomDataset)
Initializes an instance of the DicomNGetRequest class.
Declaration
public DicomNGetRequest(DicomDataset command)
Parameters
Type | Name | Description |
---|---|---|
DicomDataset | command | N-GET request command dataset. |
DicomNGetRequest(DicomUID, DicomUID)
Initializes an instance of the DicomNGetRequest class.
Declaration
public DicomNGetRequest(DicomUID requestedClassUid, DicomUID requestedInstanceUid)
Parameters
Type | Name | Description |
---|---|---|
DicomUID | requestedClassUid | Requested SOP class UID. |
DicomUID | requestedInstanceUid | Requested SOP instance UID. |
Fields
OnResponseReceived
Gets or sets the handler for the N-GET response received event.
Declaration
public DicomNGetRequest.ResponseDelegate OnResponseReceived
Field Value
Type | Description |
---|---|
DicomNGetRequest.ResponseDelegate |
Properties
Attributes
Gets the list of attribute identifiers.
Declaration
public DicomTag[] Attributes { get; }
Property Value
Type | Description |
---|---|
DicomTag[] |
SOPInstanceUID
Gets the requested SOP instance UID.
Declaration
public DicomUID SOPInstanceUID { get; }
Property Value
Type | Description |
---|---|
DicomUID |
Methods
PostResponse(DicomService, DicomResponse)
Invoke the event handler upon receiving a N-GET response.
Declaration
protected override void PostResponse(DicomService service, DicomResponse response)
Parameters
Type | Name | Description |
---|---|---|
DicomService | service | Associated DICOM service. |
DicomResponse | response | N-GET response. |