예제 #1
0
        /// <summary>
        /// Add a Transfer Syntax Uid that should be proposed by the local DICOM client handling the connection to the actor name.
        /// </summary>
        /// <param name="toActorName">Actor Name that receives a connection from this DICOM Client.</param>
        /// <param name="transferSyntaxUid">Transfer Syntax UID - as string.</param>
        public void AddTransferSyntaxProposalForDicomClient(ActorName toActorName, System.String transferSyntaxUid)
        {
            //
            // Get the DICOM client within the acquisition modality that handles the DICOM association to the actor name.
            //
            DicomClient dicomClient = _acquisitionModality.GetDicomClient(toActorName);

            if (dicomClient != null)
            {
                //
                // Add a transfer syntax that the DICOM Client should propose.
                //
                dicomClient.AddTransferSyntax(transferSyntaxUid);
            }
        }