AzureTableSettingsStoreStoreAsync(String, String, String) Method

Saves a key-value setting pair in persistent storage

Definition

Namespace: InnerDrive.Azure
Assembly: InnerDrive.Azure (in InnerDrive.Azure.dll) Version: 5.2.9017.0
C#
public Task<Response<IReadOnlyList<Response>>> StoreAsync(
	string topic,
	string key,
	string? value
)

Parameters

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

Return Value

TaskResponseIReadOnlyListResponse

Remarks

topic will be the setting's partition key and key will be the setting's row key

Exceptions

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

See Also