Class SetSharedStorageEntryCommandSettings
Sets entry with key and value for a given origin's shared storage.
public sealed class SetSharedStorageEntryCommandSettings : ICommand
- Inheritance
-
SetSharedStorageEntryCommandSettings
- Implements
- Inherited Members
Properties
CommandName
Gets the name of the command.
[JsonIgnore]
public string CommandName { get; }
Property Value
IgnoreIfPresent
If ignoreIfPresent is included and true, then only sets the entry if
key doesn't already exist.
[JsonPropertyName("ignoreIfPresent")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public bool? IgnoreIfPresent { get; set; }
Property Value
- bool?
Key
Gets or sets the key
[JsonPropertyName("key")]
public string Key { get; set; }
Property Value
OwnerOrigin
Gets or sets the ownerOrigin
[JsonPropertyName("ownerOrigin")]
public string OwnerOrigin { get; set; }
Property Value
Value
Gets or sets the value
[JsonPropertyName("value")]
public string Value { get; set; }