Table of Contents

Class AssemblyCacheBustingOptions

Namespace
Cuemon.Extensions.AspNetCore.Configuration
Assembly
Cuemon.Extensions.AspNetCore.dll

Specifies options that is related to AssemblyCacheBustingOptions operations.

public class AssemblyCacheBustingOptions : CacheBustingOptions, IParameterObject
Inheritance
AssemblyCacheBustingOptions
Implements
Inherited Members
Extension Methods

Constructors

AssemblyCacheBustingOptions()

Initializes a new instance of the AssemblyCacheBustingOptions class.

public AssemblyCacheBustingOptions()

Remarks

The following table shows the initial property values for an instance of DynamicCacheBustingOptions.

PropertyInitial Value
AssemblyGetEntryAssembly()
AlgorithmMd5
ReadByteForByteChecksumfalse

Properties

Algorithm

Gets or sets the hash algorithm to use for the computation of Assembly.

public UnkeyedCryptoAlgorithm Algorithm { get; set; }

Property Value

UnkeyedCryptoAlgorithm

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.

public Assembly Assembly { get; set; }

Property Value

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.

public bool ReadByteForByteChecksum { get; set; }

Property Value

Boolean

true if the Assembly will be read byte-for-byte when computing the checksum; otherwise, false.

See Also