• Articles
  • Api Documentation
Show / Hide Table of Contents
  • Dapplo.Jira
    • AgileExtensions
    • AttachmentExtensions
    • FilterExtensions
    • GreenhopperExtensions
    • IJiraClient
    • IssueExtensions
    • JiraClient
    • JiraConfig
    • JiraException
    • ProjectExtensions
    • ServerExtensions
    • SessionExtensions
    • TimeSpanExtensions
    • UserExtensions
    • WorkExtensions
  • Dapplo.Jira.Domains
    • IAgileDomain
    • IAttachmentDomain
    • IFilterDomain
    • IGreenhopperDomain
    • IIssueDomain
    • IJiraDomain
    • IProjectDomain
    • IServerDomain
    • ISessionDomain
    • IUserDomain
    • IWorkDomain
  • Dapplo.Jira.Entities
    • AgileIssue
    • AgileIssueFields
    • AllowedValue
    • Attachment
    • AttachmentContainer<T>
    • AvatarUrls
    • BaseId<TId>
    • BaseProperties<TId>
    • Board
    • BoardConfiguration
    • Changelog
    • Column
    • ColumnConfig
    • Comment
    • Comments
    • Component
    • ComponentDigest
    • Configuration
    • Epic
    • EpicColor
    • EpicField
    • Error
    • EstimationCustomFieldInfo
    • EstimationFieldInfo
    • Field
    • Filter
    • History
    • HistoryItem
    • Issue
    • IssueBase
    • IssueFields
    • IssueType
    • IssueWithFields<TFields>
    • JqlIssueSearch
    • LoginInfo
    • Page
    • PageableResult
    • PossibleField
    • Priority
    • ProgressInfo
    • Project
    • ProjectCategory
    • ProjectDigest
    • RankingCustomFieldInfo
    • RemoteLinks
    • ReportIssue
    • Resolution
    • Schema
    • SearchIssuesResult<TIssue, TSearch>
    • SearchResult<TResultType, TSearch>
    • ServerInfo
    • SharePermission
    • Sprint
    • SprintInReport
    • SprintReport
    • SprintReportContents
    • StatisticField
    • Status
    • StatusCategory
    • Subscription
    • Subscriptions
    • TimeTracking
    • TimeTrackingConfiguration
    • Transition
    • Transitions
    • User
    • ValueField
    • Version
    • Visibility
    • VoteInfo
    • Watches
    • Worklog
    • Worklogs
  • Dapplo.Jira.Enums
    • AdjustEstimate
    • AvatarSizes
    • BoardTypes
    • FieldType
  • Dapplo.Jira.Json
    • CustomDateTimeOffsetConverter
  • Dapplo.Jira.Query
    • DatetimeClause
    • Fields
    • IDatetimeClause
    • IDatetimeClauseWithoutValue
    • IFinalClause
    • IIssueClause
    • IProjectClause
    • ISimpleValueClause
    • IssueClause
    • IStatusClause
    • ITextClause
    • ITypeClause
    • IUserClause
    • IVersionClause
    • Operators
    • ProjectClause
    • SimpleValueClause
    • StatusClause
    • TextClause
    • TypeClause
    • UserClause
    • VersionClause
    • Where

Interface IIssueClause

An interface for issue based clauses. Advanced searching - functions reference

Namespace: Dapplo.Jira.Query
Assembly: Dapplo.Jira.dll
Syntax
public interface IIssueClause

Properties

| Improve this Doc View Source

Not

Negates the expression

Declaration
IIssueClause Not { get; }
Property Value
Type Description
IIssueClause

Methods

| Improve this Doc View Source

In(Issue[])

This allows fluent constructs like IssueKey.In(issue1, issue2)

Declaration
IFinalClause In(params Issue[] issues)
Parameters
Type Name Description
Issue[] issues
Returns
Type Description
IFinalClause
| Improve this Doc View Source

In(String[])

This allows fluent constructs like IssueKey.In(BUG-1234, FEATURE-5678)

Declaration
IFinalClause In(params string[] issueKeys)
Parameters
Type Name Description
System.String[] issueKeys
Returns
Type Description
IFinalClause
| Improve this Doc View Source

InIssueHistory()

This allows fluent constructs like IssueKey.InIssueHistory() Find issues that you have recently viewed, i.e. issues that are in the 'Recent Issues' section of the 'Issues' drop-down menu.

Declaration
IFinalClause InIssueHistory()
Returns
Type Description
IFinalClause
| Improve this Doc View Source

InLinkedIssues(Issue, String)

This allows fluent constructs like IssueKey.InLinkedIssues(issue1) Perform searches based on issues that are linked to a specified issue. You can optionally restrict the search to links of a particular type. Note that LinkType is case-sensitive.

Declaration
IFinalClause InLinkedIssues(Issue issue, string linkType = null)
Parameters
Type Name Description
Issue issue

Issue

System.String linkType

string

Returns
Type Description
IFinalClause

IFinalClause

| Improve this Doc View Source

InLinkedIssues(String, String)

This allows fluent constructs like IssueKey.InLinkedIssues(BUG-12345) Perform searches based on issues that are linked to a specified issue. You can optionally restrict the search to links of a particular type. Note that LinkType is case-sensitive.

Declaration
IFinalClause InLinkedIssues(string issueKey, string linkType = null)
Parameters
Type Name Description
System.String issueKey

string

System.String linkType

string

Returns
Type Description
IFinalClause

IFinalClause

| Improve this Doc View Source

InVotedIssues()

This allows fluent constructs like IssueKey.InVotedIssues() Find issues that you have voted for.

Declaration
IFinalClause InVotedIssues()
Returns
Type Description
IFinalClause
| Improve this Doc View Source

InWatchedIssues()

This allows fluent constructs like IssueKey.InWatchedIssues() Find issues that you have voted for.

Declaration
IFinalClause InWatchedIssues()
Returns
Type Description
IFinalClause
| Improve this Doc View Source

Is(Issue)

This allows fluent constructs like Id.Is(issue1)

Declaration
IFinalClause Is(Issue issue)
Parameters
Type Name Description
Issue issue
Returns
Type Description
IFinalClause
| Improve this Doc View Source

Is(String)

This allows fluent constructs like Id.Is(12345)

Declaration
IFinalClause Is(string issueKey)
Parameters
Type Name Description
System.String issueKey
Returns
Type Description
IFinalClause
  • Improve this Doc
  • View Source
Back to top Copyright © Dapplo