File: Infrastructure\HtmlPageContext.cs
Web Access
Project: src\src\Identity\test\Identity.FunctionalTests\Microsoft.AspNetCore.Identity.FunctionalTests.csproj (Microsoft.AspNetCore.Identity.FunctionalTests)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace Microsoft.AspNetCore.Identity.FunctionalTests;
 
public class HtmlPageContext
{
    private readonly IDictionary<string, object> _properties;
 
    protected HtmlPageContext() : this(new Dictionary<string, object>())
    {
    }
 
    protected HtmlPageContext(HtmlPageContext currentContext)
        : this(new Dictionary<string, object>(currentContext._properties))
    {
    }
 
    private HtmlPageContext(IDictionary<string, object> properties)
    {
        _properties = properties;
    }
 
    protected TValue GetValue<TValue>(string key) =>
        _properties.TryGetValue(key, out var rawValue) ? (TValue)rawValue : default;
 
    protected void SetValue(string key, object value) =>
        _properties[key] = value;
}