Rock.Model.EntityTypeService.GetEntities C# (CSharp) Метод

GetEntities() публичный Метод

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