Ejemplo n.º 1
0
Archivo: SCU.cs Proyecto: top501/DVTK-1
        public override void ProcessTrigger(Object trigger)
        {
            try
            {
                BeforeProcessTrigger(trigger);

                DicomMessageCollectionPresentationContexts typeCastTrigger = trigger as DicomMessageCollectionPresentationContexts;

                if (typeCastTrigger != null)
                {
                    SendAssociation(typeCastTrigger.dicomMessageCollection, (PresentationContext[])typeCastTrigger.presentationContexts.ToArray(typeof(PresentationContext)));
                }
            }
            catch
            {
            }

            finally
            {
                AfterProcessTrigger(trigger);

                CheckForNewResultsFile();
            }
        }
Ejemplo n.º 2
0
Archivo: SCU.cs Proyecto: ewcasas/DVTK
        public void Trigger(DicomMessageCollection dicomMessageCollection, params PresentationContext[] presentationContexts)
        {
            DicomMessageCollectionPresentationContexts trigger = new DicomMessageCollectionPresentationContexts(dicomMessageCollection, presentationContexts);

            base.Trigger(trigger);
        }
Ejemplo n.º 3
0
Archivo: SCU.cs Proyecto: top501/DVTK-1
        public void Trigger(DicomMessageCollection dicomMessageCollection, params PresentationContext[] presentationContexts)
        {
            DicomMessageCollectionPresentationContexts trigger = new DicomMessageCollectionPresentationContexts(dicomMessageCollection, presentationContexts);

            base.Trigger(trigger);
        }