Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
IItemEnumerable<IQueryResult> qr = session.Query("SELECT * FROM cmis:document", false);

foreach (IQueryResult hit in qr)
{
    Console.WriteLine(hit["cmis:name"].FirstValue + " (" + hit["cmis:objectId"].FirstValue + ")");
}