Inner Drive Extensible Architecture
C#
Show/Hide TOC
Azure
Table
Settings
Store
Find
Async(String, String) Method
Finds a setting's value by its topic and key
Definition
Namespace:
InnerDrive.Azure
Assembly:
InnerDrive.Azure (in InnerDrive.Azure.dll) Version: 5.2.9017.0
C#
Copy
public
Task
<
string
?>
FindAsync
(
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
Task
String
The setting value, or
null
if the setting cannot be found
Exceptions
ArgumentNullException
topic
or
key
is null, empty, or whitespace
InvalidOperationException
No table name is configured at the application level (i.e., appSettings.config)
See Also
Reference
AzureTableSettingsStore Class
FindAsync Overload
InnerDrive.Azure Namespace
In This Article
Definition
Parameters
Return Value
Exceptions
See Also