```json
//[doc-seo]
{
"Description": "Learn how to use `GlobalFeatureManager` in Blazor to check and manage global features effectively for your applications."
}
```
# Blazor UI: Global Features
`GlobalFeatureManager` allows you to check the global features in your Blazor applications.
## Usage
```html
@using Volo.Abp.GlobalFeatures
@* ... *@
@* Global Feature can be checked with feature name *@
@if(GlobalFeatureManager.Instance.IsEnabled("Ecommerce.Subscription"))
{
Ecommerce.Subscription is enabled.
}
@* OR it can be checked with type *@
@if(GlobalFeatureManager.Instance.IsEnabled())
{
Ecommerce.Subscription is enabled.
}
```
- You can follow _Check for a Global Feature_ section of the [Global Features document](../../infrastructure/global-features.md) to check global features in your C# code.