ClearCanvas.Dicom.Network.NetworkBase.SendNDeleteResponse C# (CSharp) Method

SendNDeleteResponse() public method

Sends an N-Delete Response.
public SendNDeleteResponse ( byte presentationID, ushort messageID, DicomMessage message, ClearCanvas.Dicom.Network.DicomStatus status ) : void
presentationID byte The presentation context ID to send the response message on.
messageID ushort The message ID of the request message being responded to.
message DicomMessage The response message to send.
status ClearCanvas.Dicom.Network.DicomStatus The status to send in the response message.
return void
		public void SendNDeleteResponse(byte presentationID, ushort messageID, DicomMessage message, DicomStatus status)
		{
			SendNCreateNSetNDeleteHelper(DicomCommandField.NDeleteResponse, presentationID, messageID, message, status);
		}