本文整理汇总了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_;
}
示例2: Load
static public FilesystemStudyStorage Load(ServerEntityKey key)
{
using (var context = new ServerExecutionContext())
{
return Load(context.ReadContext, key);
}
}
示例3: Load
static public StudyIntegrityQueueUid Load(ServerEntityKey key)
{
using (var context = new ServerExecutionContext())
{
return Load(context.ReadContext, key);
}
}
示例4: Load
static public ProcedureCode Load(ServerEntityKey key)
{
using (var context = new ServerExecutionContext())
{
return Load(context.ReadContext, key);
}
}
示例5: Load
static public RequestAttributes Load(ServerEntityKey key)
{
using (var context = new ServerExecutionContext())
{
return Load(context.ReadContext, key);
}
}
示例6: Load
static public RequestAttributes Load(ServerEntityKey key)
{
using (var read = PersistentStoreRegistry.GetDefaultStore().OpenReadContext())
{
return Load(read, key);
}
}
示例7: Load
static public DatabaseVersion Load(ServerEntityKey key)
{
using (var read = PersistentStoreRegistry.GetDefaultStore().OpenReadContext())
{
return Load(read, key);
}
}
示例8: Load
static public PartitionTransferSyntax Load(ServerEntityKey key)
{
using (var context = new ServerExecutionContext())
{
return Load(context.ReadContext, key);
}
}
示例9: Load
static public ServerSopClass Load(ServerEntityKey key)
{
using (var context = new ServerExecutionContext())
{
return Load(context.ReadContext, key);
}
}
示例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_;
}
示例11: Load
static public ArchiveQueue Load(ServerEntityKey key)
{
using (var context = new ServerExecutionContext())
{
return Load(context.ReadContext, key);
}
}
示例12: LockStudyCommand
public LockStudyCommand(ServerEntityKey studyStorageKey, bool writeLock, bool readLock)
: base("LockStudy")
{
_studyStorageKey = studyStorageKey;
_readLock = readLock;
_writeLock = writeLock;
}
示例13: Load
static public StudyIntegrityQueueUid Load(ServerEntityKey key)
{
using (var read = PersistentStoreRegistry.GetDefaultStore().OpenReadContext())
{
return Load(read, key);
}
}
示例14: Load
static public FilesystemQueue Load(ServerEntityKey key)
{
using (var read = PersistentStoreRegistry.GetDefaultStore().OpenReadContext())
{
return Load(read, key);
}
}
示例15: Load
static public ArchiveStudyStorage Load(ServerEntityKey key)
{
using (var read = PersistentStoreRegistry.GetDefaultStore().OpenReadContext())
{
return Load(read, key);
}
}