Deveel.Data.SystemExtensions.HasFeature C# (CSharp) Method

HasFeature() public static method

public static HasFeature ( this system, string name ) : bool
system this
name string
return bool
        public static bool HasFeature(this ISystem system, string name)
        {
            return system.Features.Any(x => x.FeatureName == name);
        }

Same methods

SystemExtensions::HasFeature ( this system, string name, string version ) : bool