コード例 #1
0
ファイル: CoreClient.cs プロジェクト: dekkerb115/Bam.Net
 private void SetProperty(string propertyName)
 {
     ApplicationRegistryService.Property(propertyName, this);
     ConfigurationService.Property(propertyName, this);
     DiagnosticService.Property(propertyName, this);
     LoggerService.Property(propertyName, this);
     UserRegistryService.Property(propertyName, this);
     RoleService.Property(propertyName, this);
     SystemLogReaderService.Property(propertyName, this);
 }
コード例 #2
0
ファイル: CoreClient.cs プロジェクト: dekkerb115/Bam.Net
 public List <LogEntry> GetLogEntries(DateTime from, DateTime to)
 {
     return(SystemLogReaderService.GetLogEntries(from, to));
 }