Class CacheStorageListUpdatedEventArgs
A cache has been added/deleted.
public sealed record CacheStorageListUpdatedEventArgs : EventArgs, IEquatable<EventArgs>, IEquatable<CacheStorageListUpdatedEventArgs>
- Inheritance
-
EventArgsCacheStorageListUpdatedEventArgs
- Implements
-
IEquatable<EventArgs>
- Inherited Members
-
EventArgs.ToString()EventArgs.GetHashCode()EventArgs.Equals(EventArgs)EventArgs.<Clone>$()EventArgs.BiDiEventArgs.AdditionalDataEventArgs.AdditionalMessageData
Constructors
CacheStorageListUpdatedEventArgs(string, string, string)
A cache has been added/deleted.
public CacheStorageListUpdatedEventArgs(string Origin, string StorageKey, string BucketId)
Parameters
OriginstringOrigin to update.
StorageKeystringStorage key to update.
BucketIdstringStorage bucket to update.
Properties
BucketId
Storage bucket to update.
public string BucketId { 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; }