Show / Hide Table of Contents

Class DefaultValueFeatureManagerExtensions

Inheritance
System.Object
DefaultValueFeatureManagerExtensions
Namespace: Volo.Abp.FeatureManagement
Assembly: Volo.Abp.FeatureManagement.Domain.dll
Syntax
public static class DefaultValueFeatureManagerExtensions : object

Methods

GetAllDefaultAsync(IFeatureManager, Boolean)

Declaration
public static Task<List<FeatureNameValue>> GetAllDefaultAsync(this IFeatureManager featureManager, bool fallback = true)
Parameters
Type Name Description
IFeatureManager featureManager
System.Boolean fallback
Returns
Type Description
Task<List<FeatureNameValue>>

GetAllWithProviderAsync(IFeatureManager, Boolean)

Declaration
public static Task<List<FeatureNameValueWithGrantedProvider>> GetAllWithProviderAsync(this IFeatureManager featureManager, bool fallback = true)
Parameters
Type Name Description
IFeatureManager featureManager
System.Boolean fallback
Returns
Type Description
Task<List<FeatureNameValueWithGrantedProvider>>

GetOrNullDefaultAsync(IFeatureManager, String, Boolean)

Declaration
public static Task<string> GetOrNullDefaultAsync(this IFeatureManager featureManager, string name, bool fallback = true)
Parameters
Type Name Description
IFeatureManager featureManager
System.String name
System.Boolean fallback
Returns
Type Description
Task<System.String>

GetOrNullWithProviderAsync(IFeatureManager, String, Boolean)

Declaration
public static Task<FeatureNameValueWithGrantedProvider> GetOrNullWithProviderAsync(this IFeatureManager featureManager, string name, bool fallback = true)
Parameters
Type Name Description
IFeatureManager featureManager
System.String name
System.Boolean fallback
Returns
Type Description
Task<FeatureNameValueWithGrantedProvider>
Back to top Powered by Volosoft