Class AssemblyCacheBustingOptions
Specifies options that is related to AssemblyCacheBustingOptions operations.
Inherited Members
Namespace: Cuemon.AspNetCore.Mvc.Configuration
Assembly: Cuemon.AspNetCore.Mvc.dll
Syntax
public class AssemblyCacheBustingOptions : CacheBustingOptions
Constructors
| Improve this DocAssemblyCacheBustingOptions()
Initializes a new instance of the AssemblyCacheBustingOptions class.
Declaration
public AssemblyCacheBustingOptions()
Remarks
The following table shows the initial property values for an instance of DynamicCacheBustingOptions.
Property | Initial Value |
---|---|
Assembly | System.Reflection.Assembly.GetEntryAssembly() |
AlgorithmType | CRC32 |
ReadByteForByteChecksum | false |
Properties
| Improve this DocAlgorithmType
Gets or sets the hash algorithm to use for the computation of Assembly.
Declaration
public HashAlgorithmType AlgorithmType { get; set; }
Property Value
Type | Description |
---|---|
HashAlgorithmType | The hash algorithm to use for the computation of Assembly. |
Assembly
Gets or sets the assembly that should be used as reference for the cache-busting.
Declaration
public Assembly Assembly { get; set; }
Property Value
Type | Description |
---|---|
System.Reflection.Assembly | The assembly that should be used as reference for the cache-busting. |
ReadByteForByteChecksum
Gets or sets a value indicating whether the Assembly will be read byte-for-byte when computing the checksum.
Declaration
public bool ReadByteForByteChecksum { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|