SiloHostBuilderReminderExtensions.UseAzureTableReminderService Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
UseAzureTableReminderService(ISiloHostBuilder, String)
Adds reminder storage backed by Azure Table Storage.
public static Orleans.Hosting.ISiloHostBuilder UseAzureTableReminderService (this Orleans.Hosting.ISiloHostBuilder builder, string connectionString);
static member UseAzureTableReminderService : Orleans.Hosting.ISiloHostBuilder * string -> Orleans.Hosting.ISiloHostBuilder
<Extension()>
Public Function UseAzureTableReminderService (builder As ISiloHostBuilder, connectionString As String) As ISiloHostBuilder
Parameters
- builder
- ISiloHostBuilder
The builder.
- connectionString
- String
The storage connection string.
Applies to
UseAzureTableReminderService(ISiloHostBuilder, Action<AzureTableReminderStorageOptions>)
Adds reminder storage backed by Azure Table Storage.
public static Orleans.Hosting.ISiloHostBuilder UseAzureTableReminderService (this Orleans.Hosting.ISiloHostBuilder builder, Action<Orleans.Configuration.AzureTableReminderStorageOptions> configure);
static member UseAzureTableReminderService : Orleans.Hosting.ISiloHostBuilder * Action<Orleans.Configuration.AzureTableReminderStorageOptions> -> Orleans.Hosting.ISiloHostBuilder
<Extension()>
Public Function UseAzureTableReminderService (builder As ISiloHostBuilder, configure As Action(Of AzureTableReminderStorageOptions)) As ISiloHostBuilder
Parameters
- builder
- ISiloHostBuilder
The builder.
- configure
- Action<AzureTableReminderStorageOptions>
The delegate used to configure the reminder store.
Applies to
UseAzureTableReminderService(ISiloHostBuilder, Action<OptionsBuilder<AzureTableReminderStorageOptions>>)
Adds reminder storage backed by Azure Table Storage.
public static Orleans.Hosting.ISiloHostBuilder UseAzureTableReminderService (this Orleans.Hosting.ISiloHostBuilder builder, Action<Microsoft.Extensions.Options.OptionsBuilder<Orleans.Configuration.AzureTableReminderStorageOptions>> configureOptions);
static member UseAzureTableReminderService : Orleans.Hosting.ISiloHostBuilder * Action<Microsoft.Extensions.Options.OptionsBuilder<Orleans.Configuration.AzureTableReminderStorageOptions>> -> Orleans.Hosting.ISiloHostBuilder
<Extension()>
Public Function UseAzureTableReminderService (builder As ISiloHostBuilder, configureOptions As Action(Of OptionsBuilder(Of AzureTableReminderStorageOptions))) As ISiloHostBuilder
Parameters
- builder
- ISiloHostBuilder
The builder.
- configureOptions
- Action<OptionsBuilder<AzureTableReminderStorageOptions>>
The configuration delegate.
Applies to
UseAzureTableReminderService(ISiloBuilder, String)
Adds reminder storage backed by Azure Table Storage.
public static Orleans.Hosting.ISiloBuilder UseAzureTableReminderService (this Orleans.Hosting.ISiloBuilder builder, string connectionString);
static member UseAzureTableReminderService : Orleans.Hosting.ISiloBuilder * string -> Orleans.Hosting.ISiloBuilder
<Extension()>
Public Function UseAzureTableReminderService (builder As ISiloBuilder, connectionString As String) As ISiloBuilder
Parameters
- builder
- ISiloBuilder
The builder.
- connectionString
- String
The storage connection string.
Applies to
UseAzureTableReminderService(ISiloBuilder, Action<AzureTableReminderStorageOptions>)
Adds reminder storage backed by Azure Table Storage.
public static Orleans.Hosting.ISiloBuilder UseAzureTableReminderService (this Orleans.Hosting.ISiloBuilder builder, Action<Orleans.Reminders.AzureStorage.AzureTableReminderStorageOptions> configure);
static member UseAzureTableReminderService : Orleans.Hosting.ISiloBuilder * Action<Orleans.Reminders.AzureStorage.AzureTableReminderStorageOptions> -> Orleans.Hosting.ISiloBuilder
<Extension()>
Public Function UseAzureTableReminderService (builder As ISiloBuilder, configure As Action(Of AzureTableReminderStorageOptions)) As ISiloBuilder
Parameters
- builder
- ISiloBuilder
The builder.
- configure
- Action<AzureTableReminderStorageOptions>
The delegate used to configure the reminder store.
Applies to
UseAzureTableReminderService(ISiloBuilder, Action<AzureTableReminderStorageOptions>)
Adds reminder storage backed by Azure Table Storage.
public static Orleans.Hosting.ISiloBuilder UseAzureTableReminderService (this Orleans.Hosting.ISiloBuilder builder, Action<Orleans.Configuration.AzureTableReminderStorageOptions> configure);
static member UseAzureTableReminderService : Orleans.Hosting.ISiloBuilder * Action<Orleans.Configuration.AzureTableReminderStorageOptions> -> Orleans.Hosting.ISiloBuilder
<Extension()>
Public Function UseAzureTableReminderService (builder As ISiloBuilder, configure As Action(Of AzureTableReminderStorageOptions)) As ISiloBuilder
Parameters
- builder
- ISiloBuilder
The builder.
- configure
- Action<AzureTableReminderStorageOptions>
The delegate used to configure the reminder store.
Applies to
UseAzureTableReminderService(ISiloBuilder, Action<OptionsBuilder<AzureTableReminderStorageOptions>>)
Adds reminder storage backed by Azure Table Storage.
public static Orleans.Hosting.ISiloBuilder UseAzureTableReminderService (this Orleans.Hosting.ISiloBuilder builder, Action<Microsoft.Extensions.Options.OptionsBuilder<Orleans.Reminders.AzureStorage.AzureTableReminderStorageOptions>> configureOptions);
static member UseAzureTableReminderService : Orleans.Hosting.ISiloBuilder * Action<Microsoft.Extensions.Options.OptionsBuilder<Orleans.Reminders.AzureStorage.AzureTableReminderStorageOptions>> -> Orleans.Hosting.ISiloBuilder
<Extension()>
Public Function UseAzureTableReminderService (builder As ISiloBuilder, configureOptions As Action(Of OptionsBuilder(Of AzureTableReminderStorageOptions))) As ISiloBuilder
Parameters
- builder
- ISiloBuilder
The builder.
- configureOptions
- Action<OptionsBuilder<AzureTableReminderStorageOptions>>
The configuration delegate.
Applies to
UseAzureTableReminderService(ISiloBuilder, Action<OptionsBuilder<AzureTableReminderStorageOptions>>)
Adds reminder storage backed by Azure Table Storage.
public static Orleans.Hosting.ISiloBuilder UseAzureTableReminderService (this Orleans.Hosting.ISiloBuilder builder, Action<Microsoft.Extensions.Options.OptionsBuilder<Orleans.Configuration.AzureTableReminderStorageOptions>> configureOptions);
static member UseAzureTableReminderService : Orleans.Hosting.ISiloBuilder * Action<Microsoft.Extensions.Options.OptionsBuilder<Orleans.Configuration.AzureTableReminderStorageOptions>> -> Orleans.Hosting.ISiloBuilder
<Extension()>
Public Function UseAzureTableReminderService (builder As ISiloBuilder, configureOptions As Action(Of OptionsBuilder(Of AzureTableReminderStorageOptions))) As ISiloBuilder
Parameters
- builder
- ISiloBuilder
The builder.
- configureOptions
- Action<OptionsBuilder<AzureTableReminderStorageOptions>>
The configuration delegate.
Applies to
UseAzureTableReminderService(IServiceCollection, String)
Adds reminder storage backed by Azure Table Storage.
public static Microsoft.Extensions.DependencyInjection.IServiceCollection UseAzureTableReminderService (this Microsoft.Extensions.DependencyInjection.IServiceCollection services, string connectionString);
static member UseAzureTableReminderService : Microsoft.Extensions.DependencyInjection.IServiceCollection * string -> Microsoft.Extensions.DependencyInjection.IServiceCollection
<Extension()>
Public Function UseAzureTableReminderService (services As IServiceCollection, connectionString As String) As IServiceCollection
Parameters
- services
- IServiceCollection
The service collection.
- connectionString
- String
The storage connection string.
Applies to
UseAzureTableReminderService(IServiceCollection, Action<AzureTableReminderStorageOptions>)
Adds reminder storage backed by Azure Table Storage.
public static Microsoft.Extensions.DependencyInjection.IServiceCollection UseAzureTableReminderService (this Microsoft.Extensions.DependencyInjection.IServiceCollection services, Action<Orleans.Reminders.AzureStorage.AzureTableReminderStorageOptions> configure);
static member UseAzureTableReminderService : Microsoft.Extensions.DependencyInjection.IServiceCollection * Action<Orleans.Reminders.AzureStorage.AzureTableReminderStorageOptions> -> Microsoft.Extensions.DependencyInjection.IServiceCollection
<Extension()>
Public Function UseAzureTableReminderService (services As IServiceCollection, configure As Action(Of AzureTableReminderStorageOptions)) As IServiceCollection
Parameters
- services
- IServiceCollection
The service collection.
- configure
- Action<AzureTableReminderStorageOptions>
The delegate used to configure the reminder store.
Applies to
UseAzureTableReminderService(IServiceCollection, Action<AzureTableReminderStorageOptions>)
Adds reminder storage backed by Azure Table Storage.
public static Microsoft.Extensions.DependencyInjection.IServiceCollection UseAzureTableReminderService (this Microsoft.Extensions.DependencyInjection.IServiceCollection services, Action<Orleans.Configuration.AzureTableReminderStorageOptions> configure);
static member UseAzureTableReminderService : Microsoft.Extensions.DependencyInjection.IServiceCollection * Action<Orleans.Configuration.AzureTableReminderStorageOptions> -> Microsoft.Extensions.DependencyInjection.IServiceCollection
<Extension()>
Public Function UseAzureTableReminderService (services As IServiceCollection, configure As Action(Of AzureTableReminderStorageOptions)) As IServiceCollection
Parameters
- services
- IServiceCollection
The service collection.
- configure
- Action<AzureTableReminderStorageOptions>
The delegate used to configure the reminder store.
Applies to
UseAzureTableReminderService(IServiceCollection, Action<OptionsBuilder<AzureTableReminderStorageOptions>>)
Adds reminder storage backed by Azure Table Storage.
public static Microsoft.Extensions.DependencyInjection.IServiceCollection UseAzureTableReminderService (this Microsoft.Extensions.DependencyInjection.IServiceCollection services, Action<Microsoft.Extensions.Options.OptionsBuilder<Orleans.Reminders.AzureStorage.AzureTableReminderStorageOptions>> configureOptions);
static member UseAzureTableReminderService : Microsoft.Extensions.DependencyInjection.IServiceCollection * Action<Microsoft.Extensions.Options.OptionsBuilder<Orleans.Reminders.AzureStorage.AzureTableReminderStorageOptions>> -> Microsoft.Extensions.DependencyInjection.IServiceCollection
<Extension()>
Public Function UseAzureTableReminderService (services As IServiceCollection, configureOptions As Action(Of OptionsBuilder(Of AzureTableReminderStorageOptions))) As IServiceCollection
Parameters
- services
- IServiceCollection
The service collection.
- configureOptions
- Action<OptionsBuilder<AzureTableReminderStorageOptions>>
The configuration delegate.
Applies to
UseAzureTableReminderService(IServiceCollection, Action<OptionsBuilder<AzureTableReminderStorageOptions>>)
Adds reminder storage backed by Azure Table Storage.
public static Microsoft.Extensions.DependencyInjection.IServiceCollection UseAzureTableReminderService (this Microsoft.Extensions.DependencyInjection.IServiceCollection services, Action<Microsoft.Extensions.Options.OptionsBuilder<Orleans.Configuration.AzureTableReminderStorageOptions>> configureOptions);
static member UseAzureTableReminderService : Microsoft.Extensions.DependencyInjection.IServiceCollection * Action<Microsoft.Extensions.Options.OptionsBuilder<Orleans.Configuration.AzureTableReminderStorageOptions>> -> Microsoft.Extensions.DependencyInjection.IServiceCollection
<Extension()>
Public Function UseAzureTableReminderService (services As IServiceCollection, configureOptions As Action(Of OptionsBuilder(Of AzureTableReminderStorageOptions))) As IServiceCollection
Parameters
- services
- IServiceCollection
The service collection.
- configureOptions
- Action<OptionsBuilder<AzureTableReminderStorageOptions>>
The configuration delegate.