Example #1
0
        /// <summary>
        /// Constructs a new <see cref="StudyLoaderArgs"/> using the specified parameters.
        /// </summary>
        /// <param name="studyInstanceUid">The Study Instance UID of the study to be loaded.</param>
        /// <param name="server">The server from which the study should be loaded.</param>
        public StudyLoaderArgs(string studyInstanceUid, IApplicationEntity server, StudyLoaderCheckOptions options)
        {
            _studyInstanceUid = studyInstanceUid;
            _server = server;

            StudyCheckOptions = options;
        }
Example #2
0
	    /// <summary>
	    /// Constructor.
	    /// </summary>
	    /// <param name="studyInstanceUid"></param>
	    /// <param name="server"></param>
        /// <param name="studyLoaderCheckOptions"> </param>
        public LoadStudyArgs(string studyInstanceUid, IDicomServiceNode server, StudyLoaderCheckOptions studyLoaderCheckOptions)
        {
            Platform.CheckForNullReference(studyInstanceUid, "studyInstanceUids");
            Platform.CheckForNullReference(server, "server");
            StudyInstanceUid = studyInstanceUid;
            Server = server;
            StudyLoaderCheckOptions = studyLoaderCheckOptions;
        }