Table of Contents

Class DeltaPackRangeAttribute

Namespace
DeltaPack
Assembly
DeltaPack.dll

Specifies min/max bounds for integer encoding. Bounded integers are encoded more efficiently when values are constrained.

[AttributeUsage(AttributeTargets.Property|AttributeTargets.Field)]
public sealed class DeltaPackRangeAttribute : Attribute
Inheritance
DeltaPackRangeAttribute
Inherited Members

Constructors

DeltaPackRangeAttribute(long)

public DeltaPackRangeAttribute(long min)

Parameters

min long

DeltaPackRangeAttribute(long, long)

public DeltaPackRangeAttribute(long min, long max)

Parameters

min long
max long

Properties

Max

public long? Max { get; }

Property Value

long?

Min

public long Min { get; }

Property Value

long