Rebel.Framework.Persistence.DefaultAttributeTypeRegistry.RegisterSystemAttributeTypes C# (CSharp) Method

RegisterSystemAttributeTypes() protected method

Called by RegisterDefaultTypes to register all build in system types
protected RegisterSystemAttributeTypes ( ) : void
return void
        protected virtual void RegisterSystemAttributeTypes()
        {
            RegisterAttributeType(() => new StringAttributeType());
            RegisterAttributeType(() => new TextAttributeType());
            RegisterAttributeType(() => new IntegerAttributeType());
            RegisterAttributeType(() => new DateTimeAttributeType());
            RegisterAttributeType(() => new BoolAttributeType());
            RegisterAttributeType(() => new ReadOnlyAttributeType());
            RegisterAttributeType(() => new ContentPickerAttributeType());
            RegisterAttributeType(() => new MediaPickerAttributeType());
            RegisterAttributeType(() => new ApplicationsListPickerAttributeType());
            RegisterAttributeType(() => new NodeNameAttributeType());
            RegisterAttributeType(() => new SelectedTemplateAttributeType());
            RegisterAttributeType(() => new UserGroupUsersAttributeType());
            RegisterAttributeType(() => new FileUploadAttributeType());
            RegisterAttributeType(() => new DictionaryItemTranslationsAttributeType());
        }
    }