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

SendNSetResponse() public method

Sends an N-Set Response.
public SendNSetResponse ( byte presentationID, ushort messageID, DicomMessage message, ClearCanvas.Dicom.Network.DicomStatus status ) : void
presentationID byte The presentation context ID to send th response over.
messageID ushort The message ID.
message DicomMessage The response message to send.
status ClearCanvas.Dicom.Network.DicomStatus The status to set in the response message.
return void
		public void SendNSetResponse(byte presentationID, ushort messageID, DicomMessage message, DicomStatus status)
		{
			SendNCreateNSetNDeleteHelper(DicomCommandField.NSetResponse, presentationID, messageID, message, status);
		}