示例#1
0
 private static void DefaultInitializeDicomSoftcopyPresentationStateCallback(DicomSoftcopyPresentationState presentationState)
 {
 }
示例#2
0
 /// <summary>
 /// Cloning constructor.
 /// </summary>
 protected DicomSoftcopyPresentationState(DicomSoftcopyPresentationState source, ICloningContext context)
 {
     context.CloneFields(source, this);
     _dicomFile = new DicomFile("", source._dicomFile.MetaInfo.Copy(), source._dicomFile.DataSet.Copy());
 }
		/// <summary>
		/// Cloning constructor.
		/// </summary>
		protected DicomSoftcopyPresentationState(DicomSoftcopyPresentationState source, ICloningContext context)
		{
			context.CloneFields(source, this);
			_dicomFile = new DicomFile("", source._dicomFile.MetaInfo.Copy(), source._dicomFile.DataSet.Copy());
		}
		private static void DefaultInitializeDicomSoftcopyPresentationStateCallback(DicomSoftcopyPresentationState presentationState) {}
		public PresentationStateReference(DicomSoftcopyPresentationState presentationState)
			: base(presentationState.DicomFile.DataSet[DicomTags.StudyInstanceUid].ToString(),
			       presentationState.PresentationSeriesInstanceUid,
			       presentationState.PresentationSopClassUid,
			       presentationState.PresentationSopInstanceUid,
			       presentationState.DicomFile.MetaInfo[DicomTags.SourceApplicationEntityTitle].ToString()) {}