A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
AI OnAI Off
A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
I'm doing some operations on PublishingContent event and need the language of the current Content of the event.
`if (e.Content is StandardPage standardPage)` This gives me access to standardPage.Language (CultureInfo)
`if (e.Content is TextBlock textBlock)` This however does not. Both inherits from IContent in the end.
How can I get CultureInfo from textBlock?