ASP NET Core Identity 中的 ai_user 和 ai_session cookie 是什么以及如何配置它?
What are ai_user and ai_session cookies in ASP NET Core Identity and how to configure it?
我是 ASP net core 的新手,正在学习身份的工作原理。我想知道在使用身份时添加到请求中的 ai_user 和 ai_session cookie 是什么。
Cookies
我想 cookie 与会话管理有关。我试图弄清楚如何禁用/配置它,但没有找到任何东西。
有没有办法禁用或配置它?
ai_user
和 ai_session
大约是 Application Insights
。以下是对这些的介绍:
SessionTelemetryInitializer
updates the Id
property of the Session
context for all telemetry items with value extracted from the ai_session
cookie generated by the ApplicationInsights JavaScript instrumentation code running in the user's browser.
UserTelemetryInitializer
updates the Id
and AcquisitionDate
properties of User context for all telemetry items with values extracted from the ai_user
cookie generated by the Application Insights JavaScript instrumentation code running in the user's browser.
您可以阅读此文档以了解有关 Application Insights 的更多信息。
我是 ASP net core 的新手,正在学习身份的工作原理。我想知道在使用身份时添加到请求中的 ai_user 和 ai_session cookie 是什么。 Cookies
我想 cookie 与会话管理有关。我试图弄清楚如何禁用/配置它,但没有找到任何东西。
有没有办法禁用或配置它?
ai_user
和 ai_session
大约是 Application Insights
。以下是对这些的介绍:
SessionTelemetryInitializer
updates theId
property of theSession
context for all telemetry items with value extracted from theai_session
cookie generated by the ApplicationInsights JavaScript instrumentation code running in the user's browser.
UserTelemetryInitializer
updates theId
andAcquisitionDate
properties of User context for all telemetry items with values extracted from theai_user
cookie generated by the Application Insights JavaScript instrumentation code running in the user's browser.
您可以阅读此文档以了解有关 Application Insights 的更多信息。