Multi-value cookies unsupported (#15199)

pull/15208/head
Luke Latham 2019-10-18 14:25:17 -05:00 committed by GitHub
parent 68c6f353f5
commit e64fe7605d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -3,7 +3,7 @@ title: Migrate from ASP.NET to ASP.NET Core
author: isaac2004 author: isaac2004
description: Receive guidance for migrating existing ASP.NET MVC or Web API apps to ASP.NET Core.web description: Receive guidance for migrating existing ASP.NET MVC or Web API apps to ASP.NET Core.web
ms.author: scaddie ms.author: scaddie
ms.date: 12/11/2018 ms.date: 10/18/2019
uid: migration/proper-to-2x/index uid: migration/proper-to-2x/index
--- ---
# Migrate from ASP.NET to ASP.NET Core # Migrate from ASP.NET to ASP.NET Core
@ -149,6 +149,10 @@ For example, an image asset in the *wwwroot/images* folder is accessible to the
> [!NOTE] > [!NOTE]
> For a more in-depth reference to serving static files in ASP.NET Core, see [Static files](xref:fundamentals/static-files). > For a more in-depth reference to serving static files in ASP.NET Core, see [Static files](xref:fundamentals/static-files).
## Multi-value cookies
[Multi-value cookies](xref:System.Web.HttpCookie.Values) aren't supported in ASP.NET Core. Create one cookie per value.
## Additional resources ## Additional resources
- [Porting Libraries to .NET Core](/dotnet/core/porting/libraries) - [Porting Libraries to .NET Core](/dotnet/core/porting/libraries)