Click or drag to resize

AzureTableSettingsStoreSave Method

Saves a key-value setting pair in persistent storage

Namespace: InnerDrive.Azure
Assembly: InnerDrive.Azure (in InnerDrive.Azure.dll) Version: 5.0.8475.0
Syntax
C#
public Task<Response<IReadOnlyList<Response>>> Save(
	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
Exceptions
ExceptionCondition
ArgumentNullExceptiontopic or key is null, empty, or whitespace
InvalidOperationExceptionNo table name is configured at the application level (i.e., appSettings.config)
Remarks
topic will be the setting's partition key and key will be the setting's row key
See Also