示例#1
0
 protected override IHost RegisterCore(HostEnvironmentBase <RmlEnvironment> source, string shortName, string parentFullName, Random rand, bool verbose)
 {
     return(new Host(source, shortName, parentFullName, rand, verbose));
 }
示例#2
0
 public Host(HostEnvironmentBase <RmlEnvironment> source, string shortName, string parentFullName, Random rand, bool verbose)
     : base(source, shortName, parentFullName, rand, verbose)
 {
 }
 protected override IHost RegisterCore(HostEnvironmentBase<PassThroughEnvironment> source, string shortName, string parentFullName, Random rand, bool verbose, int? conc)
 {
     return new Host(source, shortName, parentFullName, rand, verbose, conc);
 }
 public Host(HostEnvironmentBase<PassThroughEnvironment> source, string shortName, string parentFullName, Random rand, bool verbose, int? conc)
     : base(source, shortName, parentFullName, rand, verbose, conc)
 {
     IsCancelled = source.IsCancelled;
 }
 public Host(HostEnvironmentBase <DelegateEnvironment> source, string shortName, string parentFullName, Random rand, bool verbose)
     : base(source, shortName, parentFullName, rand, verbose)
 {
     IsCanceled = source.IsCanceled;
 }
 protected override IHost RegisterCore(HostEnvironmentBase <DelegateEnvironment> source, string shortName, string parentFullName, IRandom rand, bool verbose, int?conc)
 {
     return(new Host(source, shortName, parentFullName, rand, verbose, conc));
 }