/// <summary>
 /// Adds a HttpRemoteStore to the application.
 /// </summary>
 /// <param name="builder">The builder instance.</param>
 /// <param name="endpointTemplate">The endpoint URI template.</param>
 public static FinbuckleMultiTenantBuilder <TTenantInfo> WithHttpRemoteStore <TTenantInfo>(this FinbuckleMultiTenantBuilder <TTenantInfo> builder, string endpointTemplate)
     where TTenantInfo : class, ITenantInfo, new()
 => builder.WithHttpRemoteStore(endpointTemplate, null);
Esempio n. 2
0
 /// <summary>
 /// Adds a HttpRemoteSTore to the application.
 /// </summary>
 /// <param name="endpointTemplate">The endpoint URI template.</param>
 /// <param name="clientConfig">An action to configure the underlying HttpClient.</param>
 public static FinbuckleMultiTenantBuilder WithHttpRemoteStore(this FinbuckleMultiTenantBuilder builder,
                                                               string endpointTemplate)
 => builder.WithHttpRemoteStore(endpointTemplate, null);