Click or drag to resize

IContentStore Methods


The IContentStore type exposes the following members.

Methods
  NameDescription
Public methodGetStartingUser
Gets a starting User object to open a session.
Public methodIsStale
Returns whether a given index is stale.
Public methodLastIndexTimestamp
Returns the last time a given index was indexed.
Public methodCode exampleOpenReadSession
Opens a read-only session. This session doesn't track changes to objects that were retrieved within this session, nor does it track created or deleted objects. It is not in charge of saving changes, only for reading.
Public methodCode exampleOpenWriteSession
Opens a read/write session. This session automatically tracks changes made to any objects that were retrieved within this session. It also tracks the newly created and to-be-deleted objects. All saves occur when the session is disposed. If any exceptions occurred before the session is closed, no changes are applied. This system makes it easy to perform transactional changes and prevents any partial changes due to errors before the session is disposed.
Public methodStartIndexing
Starts indexing on the document store.
Public methodStopIndexing
Stops indexing on the document store once the current indexing batch is finished.
Top
See Also