# 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](../../Global-Features.md) to check global features in your C# code.