다음을 통해 공유


AzureStorageReminderServiceCollectionExtensions.UseAzureTableReminderService 메서드

정의

오버로드

UseAzureTableReminderService(IServiceCollection, Action<OptionsBuilder<AzureTableReminderStorageOptions>>)

Azure Table Storage에서 백업하는 미리 알림 스토리지를 추가합니다.

UseAzureTableReminderService(IServiceCollection, Action<AzureTableReminderStorageOptions>)

Azure Table Storage에서 백업하는 미리 알림 스토리지를 추가합니다.

UseAzureTableReminderService(IServiceCollection, String)

Azure Table Storage에서 백업하는 미리 알림 스토리지를 추가합니다.

UseAzureTableReminderService(IServiceCollection, Action<OptionsBuilder<AzureTableReminderStorageOptions>>)

Source:
AzureStorageReminderServiceCollectionExtensions.cs
Source:
AzureStorageReminderServiceCollectionExtensions.cs
Source:
AzureStorageReminderServiceCollectionExtensions.cs
Source:
AzureStorageReminderServiceCollectionExtensions.cs

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

매개 변수

services
IServiceCollection

서비스 컬렉션입니다.

configureOptions
Action<OptionsBuilder<AzureTableReminderStorageOptions>>

구성 대리자입니다.

반환

연결에 대해 제공된 IServiceCollection입니다.

적용 대상

UseAzureTableReminderService(IServiceCollection, Action<AzureTableReminderStorageOptions>)

Source:
AzureStorageReminderServiceCollectionExtensions.cs
Source:
AzureStorageReminderServiceCollectionExtensions.cs
Source:
AzureStorageReminderServiceCollectionExtensions.cs
Source:
AzureStorageReminderServiceCollectionExtensions.cs

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

매개 변수

services
IServiceCollection

서비스 컬렉션입니다.

configure
Action<AzureTableReminderStorageOptions>

미리 알림 저장소를 구성하는 데 사용되는 대리자입니다.

반환

연결에 대해 제공된 IServiceCollection입니다.

적용 대상

UseAzureTableReminderService(IServiceCollection, String)

Source:
AzureStorageReminderServiceCollectionExtensions.cs
Source:
AzureStorageReminderServiceCollectionExtensions.cs
Source:
AzureStorageReminderServiceCollectionExtensions.cs
Source:
AzureStorageReminderServiceCollectionExtensions.cs

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

매개 변수

services
IServiceCollection

서비스 컬렉션입니다.

connectionString
String

스토리지 연결 문자열입니다.

반환

연결에 대해 제공된 IServiceCollection입니다.

적용 대상