Class ChecksumBuilderExtensions
- Namespace
- Cuemon.Extensions.AspNetCore.Data.Integrity
- Assembly
- Cuemon.Extensions.AspNetCore.dll
Extension methods for the ChecksumBuilder class.
public static class ChecksumBuilderExtensions
- Inheritance
-
ChecksumBuilderExtensions
Examples
The following example demonstrates how to create an EntityTagHeaderValue from a ChecksumBuilder instance.
using Cuemon.Data.Integrity;
using Cuemon.Extensions.AspNetCore.Data.Integrity;
using Microsoft.Net.Http.Headers;
namespace Examples;
public class EntityTagExample
{
public EntityTagHeaderValue CreateEntityTag(ChecksumBuilder builder)
{
return builder.ToEntityTagHeaderValue();
}
public EntityTagHeaderValue CreateWeakEntityTag(ChecksumBuilder builder)
{
return builder.ToEntityTagHeaderValue(isWeak: true);
}
}
Methods
ToEntityTagHeaderValue(ChecksumBuilder, bool)
Creates an EntityTagHeaderValue from the specified builder.
public static EntityTagHeaderValue ToEntityTagHeaderValue(this ChecksumBuilder builder, bool isWeak = false)
Parameters
builderChecksumBuilderThe ChecksumBuilder to extend.
isWeakboolA value that indicates if this entity-tag header is a weak validator.
Returns
- EntityTagHeaderValue
An EntityTagHeaderValue that is initiated with a hexadecimal representation of Checksum and a value that indicates if the tag is weak.
Exceptions
- ArgumentNullException
buildercannot be null.