You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Provides the contextual validation <see cref="Date"/> for a <see cref="IReferenceData.StartsOn"/> and <see cref="IReferenceData.EndsOn"/> <see cref="IReferenceData.IsValid"/> verification.
/// </summary>
public class ReferenceDataContext : IReferenceDataContext
/// Gets or sets the <see cref="IReferenceData"/> <see cref="IReferenceData.StartsOn"/> and <see cref="IReferenceData.EndsOn"/> contextual validation date.
/// </summary>
/// <remarks>Defaults to <see cref="Runtime.UtcNow"/>.</remarks>
public DateTimeOffset? Date
{
get => _date ??= Runtime.UtcNow;
set => _date = value;
}
/// <summary>
/// Gets or sets a contextual validation date for a specific <see cref="IReferenceData"/> <paramref name="type"/>.