Пример #1
0
 internal AsyncEventServiceBuilder(Database database,
                                   string containerId,
                                   string partitionKeyPath,
                                   EventServiceOptions options)
     : base(database, containerId, partitionKeyPath)
 {
     _options = options;
 }
Пример #2
0
 public AsyncEventServiceBuilder WithOptions(EventServiceOptions options)
 {
     _options = options;
     return(this);
 }