Rock.Model.EntityTypeService.GetEntities C# (CSharp) Method

GetEntities() public method

Gets an enumerable collection of EntityTypes where the IsEntity flag is set to true.
public GetEntities ( ) : IEnumerable
return IEnumerable
        public IEnumerable<EntityType> GetEntities()
        {
            return Queryable().Where( e => e.IsEntity );
        }