Class CacheStorageContentUpdatedEventArgs
A cache's contents have been modified.
public sealed record CacheStorageContentUpdatedEventArgs : EventArgs, IEquatable<EventArgs>, IEquatable<CacheStorageContentUpdatedEventArgs>
- Inheritance
-
EventArgsCacheStorageContentUpdatedEventArgs
- Implements
-
IEquatable<EventArgs>
- Inherited Members
-
EventArgs.ToString()EventArgs.GetHashCode()EventArgs.Equals(EventArgs)EventArgs.<Clone>$()EventArgs.BiDiEventArgs.AdditionalDataEventArgs.AdditionalMessageData
Constructors
CacheStorageContentUpdatedEventArgs(string, string, string, string)
A cache's contents have been modified.
public CacheStorageContentUpdatedEventArgs(string Origin, string StorageKey, string BucketId, string CacheName)
Parameters
OriginstringOrigin to update.
StorageKeystringStorage key to update.
BucketIdstringStorage bucket to update.
CacheNamestringName of cache in origin.
Properties
BucketId
Storage bucket to update.
public string BucketId { get; init; }
Property Value
CacheName
Name of cache in origin.
public string CacheName { 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; }