File: Forms\AntiforgeryRequestToken.cs
Web Access
Project: src\src\Components\Web\src\Microsoft.AspNetCore.Components.Web.csproj (Microsoft.AspNetCore.Components.Web)
// 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.Components.Forms;
 
/// <summary>
/// The antiforgery token included in the request form data.
/// </summary>
public class AntiforgeryRequestToken
{
    /// <summary>
    /// Initializes a new instance of <see cref="AntiforgeryRequestToken"/>.
    /// </summary>
    /// <param name="value">The antiforgery token value.</param>
    /// <param name="formFieldName">The form field name for the antiforgery token.</param>
    public AntiforgeryRequestToken(string value, string formFieldName)
    {
        ArgumentNullException.ThrowIfNull(value);
        ArgumentNullException.ThrowIfNull(formFieldName);
 
        Value = value;
        FormFieldName = formFieldName;
    }
 
    /// <summary>
    /// Gets the antiforgery token value.
    /// </summary>
    public string Value { get; }
 
    /// <summary>
    /// Gets the form field name for the antiforgery token.
    /// </summary>
    public string FormFieldName { get; }
}