Interface IUserClause
The clause for user related fields
Namespace: Dapplo.Confluence.Query
Assembly: Dapplo.Confluence.dll
Syntax
public interface IUserClause
Properties
| Improve this Doc View SourceIsCurrentUser
This allows fluent constructs like Creator.IsCurrentUser
Declaration
IFinalClause IsCurrentUser { get; }
Property Value
Type | Description |
---|---|
IFinalClause | IFinalClause |
Not
Negates the expression
Declaration
IUserClause Not { get; }
Property Value
Type | Description |
---|---|
IUserClause | IFinalClause |
Methods
| Improve this Doc View SourceIn(String[])
This allows fluent constructs like Creator.In("smith", "squarepants")
Declaration
IFinalClause In(params string[] users)
Parameters
Type | Name | Description |
---|---|---|
System.String[] | users | array with usernames |
Returns
Type | Description |
---|---|
IFinalClause | IFinalClause |
In(User[])
This allows fluent constructs like Creator.In("smith", "squarepants")
Declaration
IFinalClause In(params User[] users)
Parameters
Type | Name | Description |
---|---|---|
User[] | users | array with User objects |
Returns
Type | Description |
---|---|
IFinalClause | IFinalClause |
InCurrentUserAnd(String[])
This allows fluent constructs like Creator.InCurrentUserAnd("smith", "squarepants")
Declaration
IFinalClause InCurrentUserAnd(params string[] users)
Parameters
Type | Name | Description |
---|---|---|
System.String[] | users | array with usernames |
Returns
Type | Description |
---|---|
IFinalClause | IFinalClause |
InCurrentUserAnd(User[])
This allows fluent constructs like Creator.InCurrentUserAnd("smith", "squarepants")
Declaration
IFinalClause InCurrentUserAnd(params User[] users)
Parameters
Type | Name | Description |
---|---|---|
User[] | users | User array |
Returns
Type | Description |
---|---|
IFinalClause | IFinalClause |
Is(String)
This allows fluent constructs like Creator.Is("smith")
Declaration
IFinalClause Is(string user)
Parameters
Type | Name | Description |
---|---|---|
System.String | user |
Returns
Type | Description |
---|---|
IFinalClause | IFinalClause |
Is(User)
This allows fluent constructs like Creator.Is(user1)
Declaration
IFinalClause Is(User user)
Parameters
Type | Name | Description |
---|---|---|
User | user |
Returns
Type | Description |
---|---|
IFinalClause | IFinalClause |