Composite.Data.PageFolderFacade.GetAllFolderTypes C# (CSharp) Метод

GetAllFolderTypes() публичный статический Метод

Returns all possible page folder types. This is NOT all types that only have been defined on any pages
public static GetAllFolderTypes ( ) : IEnumerable
Результат IEnumerable
        public static IEnumerable<Type> GetAllFolderTypes()
        {
            return DataAssociationRegistry.GetAssociationTypes(typeof(IPage), DataAssociationType.Aggregation);
        }

Usage Example

Пример #1
0
 public static IEnumerable <Type> GetAllGlobalDataTypes()
 {
     return
         (DataFacade.GetGeneratedInterfaces().
          Except(PageFolderFacade.GetAllFolderTypes()).
          Except(PageMetaDataFacade.GetAllMetaDataTypes()));
 }