How do I return all conflict documents from a Notes Database?
Posted
by ssg31415926
on Stack Overflow
See other posts from Stack Overflow
or by ssg31415926
Published on 2010-03-24T13:42:01Z
Indexed on
2010/03/24
13:43 UTC
Read the original article
Hit count: 495
I want to get all conflict documents from a Notes database. So far, i've got this:
Domino.NotesSession notesSession;
Domino.NotesDatabase notesDatabase = this.OpenDatabase(out notesSession);
Domino.NotesDateTime dateTime = notesSession.CreateDateTime(String.Empty);
Domino.NotesDocumentCollection results =
notesDatabase.Search(this.SearchString, dateTime, 0);
It works with, for example:
searchString = "@Contains(ShortName;\"Bob\")";
How can I do the equivalent for conflict documents?
© Stack Overflow or respective owner