Interface IDataStoreProviderFactory
Interface definition for data store provider factories.
Namespace: Microsoft.Internal.Studios.Aruba.Infrastructure
Assembly: Aruba.Infrastructure.dll
Syntax
public interface IDataStoreProviderFactory
Methods
View SourceCreateAndInitializeAsync(string, bool)
Creates a IDataStoreProvider.
Declaration
Task<IDataStoreProvider> CreateAndInitializeAsync(string projectName, bool userData = false)
Parameters
| Type | Name | Description |
|---|---|---|
| string | projectName | The title the provider is for. |
| bool | userData | Set to true if the provider is for user data and not title data. Default is false. |
Returns
| Type | Description |
|---|---|
| Task<IDataStoreProvider> | The created IDataStoreProvider. |