Table of Contents

Class UserIndexBuilderService

Namespace
Dynamicweb.Security.UserManagement.Indexing
Assembly
Dynamicweb.Core.dll

The class UserIndexBuilderService represents service allows to build different indexes

public class UserIndexBuilderService
Inheritance
UserIndexBuilderService
Inherited Members

Methods

UpdateIndex(string)

Builds repository index updating last modified users

public static void UpdateIndex(string indexName)

Parameters

indexName string

The index name.

UpdateIndexWithIds(string, IEnumerable<int>)

Builds repository index updating specified user ids.

public static void UpdateIndexWithIds(string indexName, IEnumerable<int> userIds)

Parameters

indexName string

The index name.

userIds IEnumerable<int>

The user ids to update.

UpdateIndexWithIds(string, int)

Builds repository index updating specified user id.

public static void UpdateIndexWithIds(string indexName, int userId)

Parameters

indexName string

The index name.

userId int

The user id to update.

To top