Skip to content

Commit

Permalink
updated Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Hendy committed Mar 12, 2019
1 parent a4d7278 commit 0a0cc89
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,19 +141,19 @@ A node query is used to specify search criteria based on common properties of IP

```csharp
lookQuery.NodeQuery = new NodeQuery() {
HasType = PublishedItemType.Content,
//HasTypeAny = new [] {
Type = PublishedItemType.Content,
//TypeAny = new [] {
// PublishedItemType.Content,
// PublishedItemType.Media,
// PublishedItemType.Member
//},
DetachedQuery = DetachedQuery.IncludeDetached, // enum options
HasCulture = new CultureInfo("fr"),
//HasCultureAny = new [] {
Culture = new CultureInfo("fr"),
//CultureAny = new [] {
// new CultureInfo("fr")
//},
HasAlias = "myDocTypeAlias",
//HasAliasAny = new [] {
Alias = "myDocTypeAlias",
//AliasAny = new [] {
// "myDocTypeAlias",
// "myMediaTypeAlias",
// "myMemberTypeAlias"
Expand Down

0 comments on commit 0a0cc89

Please sign in to comment.