Class IndexedDBContentUpdatedEventArgs
The origin's IndexedDB object store has been modified.
public sealed record IndexedDBContentUpdatedEventArgs : EventArgs, IEquatable<EventArgs>, IEquatable<IndexedDBContentUpdatedEventArgs>
- Inheritance
-
EventArgsIndexedDBContentUpdatedEventArgs
- Implements
-
IEquatable<EventArgs>
- Inherited Members
-
EventArgs.ToString()EventArgs.GetHashCode()EventArgs.Equals(EventArgs)EventArgs.<Clone>$()EventArgs.BiDiEventArgs.AdditionalDataEventArgs.AdditionalMessageData
Constructors
IndexedDBContentUpdatedEventArgs(string, string, string, string, string)
The origin's IndexedDB object store has been modified.
public IndexedDBContentUpdatedEventArgs(string Origin, string StorageKey, string BucketId, string DatabaseName, string ObjectStoreName)
Parameters
OriginstringOrigin to update.
StorageKeystringStorage key to update.
BucketIdstringStorage bucket to update.
DatabaseNamestringDatabase to update.
ObjectStoreNamestringObjectStore to update.
Properties
BucketId
Storage bucket to update.
public string BucketId { get; init; }
Property Value
DatabaseName
Database to update.
public string DatabaseName { get; init; }
Property Value
ObjectStoreName
ObjectStore to update.
public string ObjectStoreName { get; init; }
Property Value
Origin
Origin to update.
public string Origin { get; init; }
Property Value
StorageKey
Storage key to update.
public string StorageKey { get; init; }