GlobalConfiguration.ReminderServiceProviderType Enum
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.
Reminders configuration that controls the type of the protocol that silo use to implement Reminders.
public enum GlobalConfiguration.ReminderServiceProviderType
type GlobalConfiguration.ReminderServiceProviderType =
Public Enum GlobalConfiguration.ReminderServiceProviderType
- Inheritance
-
GlobalConfiguration.ReminderServiceProviderType
Fields
Name | Value | Description |
---|---|---|
NotSpecified | 0 | Default value to allow discrimination of override values. |
ReminderTableGrain | 1 | Grain is used to store reminders information. This option is not reliable and thus should only be used in local development setting. |
AzureTable | 2 | AzureTable is used to store reminders information. This option can be used in production. |
AdoNet | 3 | ADO.NET is used to store reminders information. This option can be used in production. |
SqlServer | 3 | SQL Server is used to store reminders information. This option can be used in production. |
MockTable | 4 | Used for benchmarking; it simply delays for a specified delay during each operation. |
Disabled | 5 | Reminder Service is disabled. |
Custom | 6 | Use custom Reminder Service from third-party assembly |