コード例 #1
0
 public MongoMembershipTable(
     ILogger <MongoMembershipTable> logger,
     IOptions <ClusterOptions> clusterOptions,
     IOptions <MongoDBMembershipTableOptions> options)
 {
     this.logger    = logger;
     this.options   = options.Value;
     this.clusterId = clusterOptions.Value.ClusterId;
 }
コード例 #2
0
 public MongoMembershipTable(
     IMongoClientFactory mongoClientFactory,
     ILogger <MongoMembershipTable> logger,
     IOptions <ClusterOptions> clusterOptions,
     IOptions <MongoDBMembershipTableOptions> options)
 {
     this.mongoClient = mongoClientFactory.Create(options.Value, "Membership");
     this.logger      = logger;
     this.options     = options.Value;
     this.clusterId   = clusterOptions.Value.ClusterId;
 }