SendNCreateResponse Example for C#

//This example uses the predefined variable “TreeView1” of type “TreeView” from “.NET Framework”.
//LEADDICOMNet1 is a predefined LEADDicomNet object
//LEADDICOM1 is a DICOM Dataset defined outside this method
private void LEADDICOMNet1_NetReceiveNCreateRequest(int hNet, short nPresentationID, short nMessageID, string pszClass, string pszInstance, int hDS)
{
   short nRet = 0;
   System.Windows.Forms.TreeNode NewNode = null;
   string szReply = null;
   string szName = null;
   NewNode = new System.Windows.Forms.TreeNode("Command Set - " + "N-CREATE-REQUEST");
   TreeView1.Nodes.Add(NewNode);
   NewNode.EnsureVisible();
   NewNode.Nodes.Add("Presentation ID: " + System.Convert.ToString(nPresentationID));
   NewNode.Nodes.Add("Message ID: " + System.Convert.ToString(nMessageID));
   nRet = LEADDICOM1.FindUID(pszClass);
   if (nRet == 0)
   {
      szName = LEADDICOM1.get_CurrentUID().Name;
      NewNode.Nodes.Add("Affected SOP Class: " + szName + " - " + pszClass);
   }
   else
      NewNode.Nodes.Add("Affected SOP Class: " + pszClass);
   NewNode.Nodes.Add("Affected SOP Instance: " + pszInstance);
   //This is a function that would perform the actual creation of the SOP Instance - this is a function that you have to write
   nRet = PerformCreateCommand(pszClass, pszInstance, hDS);
   if (nRet != (short)LTDicomKernelLib.DicomErrorCodes.DICOM_SUCCESS)
      nRet = (short)LTDNCLib.DicomCommandStatusConstants.COMMAND_STATUS_PROCESSING_FAILURE;
   //send a response
   szReply = "Create Response Command Set Sent - ";
   //note, we simply send back the passed hDS in this sample
   LEADDICOMNet1.SendNCreateResponse(hNet, nPresentationID, nMessageID, pszClass, pszInstance, nRet, hDS);
}