// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc.ViewFeatures; namespace Microsoft.AspNetCore.Mvc { /// /// Provides programmatic configuration for cookies set by /// public class CookieTempDataProviderOptions { /// /// The path set for a cookie. If not specified, current request's value is used. /// public string Path { get; set; } /// /// The domain set on a cookie. Defaults to null. /// public string Domain { get; set; } } }