当前位置: 首页>>代码示例>>C#>>正文


C# Enterprise.ServerEntityKey类代码示例

本文整理汇总了C#中ClearCanvas.ImageServer.Enterprise.ServerEntityKey的典型用法代码示例。如果您正苦于以下问题:C# ServerEntityKey类的具体用法?C# ServerEntityKey怎么用?C# ServerEntityKey使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


ServerEntityKey类属于ClearCanvas.ImageServer.Enterprise命名空间,在下文中一共展示了ServerEntityKey类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: StudyDeleteRecord

 public StudyDeleteRecord(
      String _studyInstanceUid_
     ,DateTime _timestamp_
     ,String _serverPartitionAE_
     ,ServerEntityKey _filesystemKey_
     ,String _backupPath_
     ,String _reason_
     ,String _accessionNumber_
     ,String _patientId_
     ,String _patientsName_
     ,String _studyId_
     ,String _studyDescription_
     ,String _studyDate_
     ,String _studyTime_
     ,XmlDocument _archiveInfo_
     ,String _extendedInfo_
     ):base("StudyDeleteRecord")
 {
     StudyInstanceUid = _studyInstanceUid_;
     Timestamp = _timestamp_;
     ServerPartitionAE = _serverPartitionAE_;
     FilesystemKey = _filesystemKey_;
     BackupPath = _backupPath_;
     Reason = _reason_;
     AccessionNumber = _accessionNumber_;
     PatientId = _patientId_;
     PatientsName = _patientsName_;
     StudyId = _studyId_;
     StudyDescription = _studyDescription_;
     StudyDate = _studyDate_;
     StudyTime = _studyTime_;
     ArchiveInfo = _archiveInfo_;
     ExtendedInfo = _extendedInfo_;
 }
开发者ID:nhannd,项目名称:Xian,代码行数:34,代码来源:StudyDeleteRecord.gen.cs

示例2: Load

 static public FilesystemStudyStorage Load(ServerEntityKey key)
 {
     using (var context = new ServerExecutionContext())
     {
         return Load(context.ReadContext, key);
     }
 }
开发者ID:m-berkani,项目名称:ClearCanvas,代码行数:7,代码来源:FilesystemStudyStorage.gen.cs

示例3: Load

 static public StudyIntegrityQueueUid Load(ServerEntityKey key)
 {
     using (var context = new ServerExecutionContext())
     {
         return Load(context.ReadContext, key);
     }
 }
开发者ID:m-berkani,项目名称:ClearCanvas,代码行数:7,代码来源:StudyIntegrityQueueUid.gen.cs

示例4: Load

 static public ProcedureCode Load(ServerEntityKey key)
 {
     using (var context = new ServerExecutionContext())
     {
         return Load(context.ReadContext, key);
     }
 }
开发者ID:m-berkani,项目名称:ClearCanvas,代码行数:7,代码来源:ProcedureCode.gen.cs

示例5: Load

 static public RequestAttributes Load(ServerEntityKey key)
 {
     using (var context = new ServerExecutionContext())
     {
         return Load(context.ReadContext, key);
     }
 }
开发者ID:m-berkani,项目名称:ClearCanvas,代码行数:7,代码来源:RequestAttributes.gen.cs

示例6: Load

 static public RequestAttributes Load(ServerEntityKey key)
 {
     using (var read = PersistentStoreRegistry.GetDefaultStore().OpenReadContext())
     {
         return Load(read, key);
     }
 }
开发者ID:UIKit0,项目名称:ClearCanvas,代码行数:7,代码来源:RequestAttributes.gen.cs

示例7: Load

 static public DatabaseVersion Load(ServerEntityKey key)
 {
     using (var read = PersistentStoreRegistry.GetDefaultStore().OpenReadContext())
     {
         return Load(read, key);
     }
 }
开发者ID:UIKit0,项目名称:ClearCanvas,代码行数:7,代码来源:DatabaseVersion.gen.cs

示例8: Load

 static public PartitionTransferSyntax Load(ServerEntityKey key)
 {
     using (var context = new ServerExecutionContext())
     {
         return Load(context.ReadContext, key);
     }
 }
开发者ID:m-berkani,项目名称:ClearCanvas,代码行数:7,代码来源:PartitionTransferSyntax.gen.cs

示例9: Load

 static public ServerSopClass Load(ServerEntityKey key)
 {
     using (var context = new ServerExecutionContext())
     {
         return Load(context.ReadContext, key);
     }
 }
开发者ID:m-berkani,项目名称:ClearCanvas,代码行数:7,代码来源:ServerSopClass.gen.cs

示例10: Device

 public Device(
      Boolean _dhcp_
     ,Boolean _enabled_
     ,Boolean _allowStorage_
     ,Boolean _acceptKOPR_
     ,Boolean _allowRetrieve_
     ,Boolean _allowQuery_
     ,Boolean _allowAutoRoute_
     ,Int16 _throttleMaxConnections_
     ,DateTime _lastAccessedTime_
     ,DeviceTypeEnum _deviceTypeEnum_
     ,ServerEntityKey _serverPartitionKey_
     ,String _aeTitle_
     ,Int32 _port_
     ,String _description_
     ,String _ipAddress_
     ):base("Device")
 {
     Dhcp = _dhcp_;
     Enabled = _enabled_;
     AllowStorage = _allowStorage_;
     AcceptKOPR = _acceptKOPR_;
     AllowRetrieve = _allowRetrieve_;
     AllowQuery = _allowQuery_;
     AllowAutoRoute = _allowAutoRoute_;
     ThrottleMaxConnections = _throttleMaxConnections_;
     LastAccessedTime = _lastAccessedTime_;
     DeviceTypeEnum = _deviceTypeEnum_;
     ServerPartitionKey = _serverPartitionKey_;
     AeTitle = _aeTitle_;
     Port = _port_;
     Description = _description_;
     IpAddress = _ipAddress_;
 }
开发者ID:nhannd,项目名称:Xian,代码行数:34,代码来源:Device.gen.cs

示例11: Load

 static public ArchiveQueue Load(ServerEntityKey key)
 {
     using (var context = new ServerExecutionContext())
     {
         return Load(context.ReadContext, key);
     }
 }
开发者ID:m-berkani,项目名称:ClearCanvas,代码行数:7,代码来源:ArchiveQueue.gen.cs

示例12: LockStudyCommand

		public LockStudyCommand(ServerEntityKey studyStorageKey, bool writeLock, bool readLock)
			: base("LockStudy")
		{
			_studyStorageKey = studyStorageKey;
			_readLock = readLock;
			_writeLock = writeLock;
		}
开发者ID:UIKit0,项目名称:ClearCanvas,代码行数:7,代码来源:LockStudyCommand.cs

示例13: Load

 static public StudyIntegrityQueueUid Load(ServerEntityKey key)
 {
     using (var read = PersistentStoreRegistry.GetDefaultStore().OpenReadContext())
     {
         return Load(read, key);
     }
 }
开发者ID:nhannd,项目名称:Xian,代码行数:7,代码来源:StudyIntegrityQueueUid.gen.cs

示例14: Load

 static public FilesystemQueue Load(ServerEntityKey key)
 {
     using (var read = PersistentStoreRegistry.GetDefaultStore().OpenReadContext())
     {
         return Load(read, key);
     }
 }
开发者ID:UIKit0,项目名称:ClearCanvas,代码行数:7,代码来源:FilesystemQueue.gen.cs

示例15: Load

 static public ArchiveStudyStorage Load(ServerEntityKey key)
 {
     using (var read = PersistentStoreRegistry.GetDefaultStore().OpenReadContext())
     {
         return Load(read, key);
     }
 }
开发者ID:nhannd,项目名称:Xian,代码行数:7,代码来源:ArchiveStudyStorage.gen.cs


注:本文中的ClearCanvas.ImageServer.Enterprise.ServerEntityKey类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。