Example #1
0
		public ConfigSource(object source, IConfigSourceWatcher watcher) {
			if(source == null) {
				throw new ArgumentNullException("source");
			}
			this.source = source;
			this.watcher = watcher;
		}
Example #2
0
 public ConfigSource(object source, IConfigSourceWatcher watcher)
 {
     if (source == null)
     {
         throw new ArgumentNullException("source");
     }
     this.source  = source;
     this.watcher = watcher;
 }
Example #3
0
		public ConfigSource(IConfigSourceWatcher watcher) : this(watcher, watcher) {}
Example #4
0
 public ConfigSource(IConfigSourceWatcher watcher) : this(watcher, watcher)
 {
 }