Пример #1
0
 protected PropertiesHolder(PropertiesHolder parent, string prefix = "")
 {
     properties  = parent.properties;
     this.prefix = prefix.TrimEnd('.');
 }
Пример #2
0
 protected PropertiesHolder(PropertiesHolder parent)
 {
     properties = parent.properties;
 }
 public XmlSchedulingOptions(PropertiesHolder parent) : base(parent)
 {
 }
Пример #4
0
 protected internal ClusterOptions(PropertiesHolder parent) : base(parent)
 {
 }
Пример #5
0
 internal PersistentStoreOptions(PropertiesHolder parent) : base(parent)
 {
     SetProperty("quartz.jobStore.type", typeof(JobStoreTX).AssemblyQualifiedNameWithoutVersion());
 }
Пример #6
0
 protected StoreOptions(PropertiesHolder parent) : base(parent)
 {
 }
Пример #7
0
 protected internal ThreadPoolOptions(PropertiesHolder parent) : base(parent)
 {
 }
Пример #8
0
 internal PersistentStoreOptions(PropertiesHolder parent) : base(parent)
 {
     SetProperty(StdSchedulerFactory.PropertyJobStoreType, typeof(JobStoreTX).AssemblyQualifiedNameWithoutVersion());
 }