Click or drag to resize

AzureTableSettingsStoreFind(String, String) Method

Finds a setting's value by its topic and key

Namespace: InnerDrive.Azure
Assembly: InnerDrive.Azure (in InnerDrive.Azure.dll) Version: 5.0.8475.0
Syntax
C#
public Task<string?> Find(
	string topic,
	string key
)

Parameters

topic  String
The topic (usually class name) of the setting
key  String
The unique key identifying the setting in the topic area

Return Value

TaskString
The setting value, or null if the setting cannot be found
Exceptions
ExceptionCondition
ArgumentNullExceptiontopic or key is null, empty, or whitespace
InvalidOperationExceptionNo table name is configured at the application level (i.e., appSettings.config)
See Also