/// <summary>
        /// Clear the Transfer Syntaxes supported by the DICOM server handling the connection from the actor name.
        /// </summary>
        /// <param name="fromActorName">Actor Name that makes a connection to this DICOM Server.</param>
        /// <remarks>The fromActorName type is always the ImageManager at the moment - no other actors connect to the Acquisition
        /// Modality at the moment. The caller does need to supply fromActorName as the Id component is not known by default.
        ///
        /// The caller is responsible for setting at least one new Transfer Syntax UID via the AddTransferSyntaxSupportForDicomServer()
        /// method after making this method call.</remarks>
        public void ClearTransferSyntaxSupportForDicomServer(ActorName fromActorName)
        {
            //
            // Get the DICOM server within the acquisition modality that handles the DICOM association from the actor name.
            //
            DicomServer dicomServer = _acquisitionModality.GetDicomServer(fromActorName);

            if (dicomServer != null)
            {
                //
                // Clear the transfer syntax support for the DICOM Server.
                //
                dicomServer.ClearTransferSyntaxes();
            }
        }