AzureTableSettingsStoreFindAsync(String, CancellationToken) Method

Finds all the settings for a particular topic

Definition

Namespace: InnerDrive.Azure
Assembly: InnerDrive.Azure (in InnerDrive.Azure.dll) Version: 5.2.9417.0
C#
public Task<IDictionary<string, string?>> FindAsync(
	string topic,
	CancellationToken cancellationToken = default
)

Parameters

topic  String
The topic (usually class name) of the settings
cancellationToken  CancellationToken  (Optional)
A CancellationToken controlling the request lifetime.

Return Value

TaskIDictionaryString, String
The keys and configured values for the specified topic

Exceptions

ArgumentNullExceptiontopic is null, empty, or whitespace
InvalidOperationExceptionNo table name is configured at the application level (i.e., appSettings.config)

See Also