C# Class Pathoschild.FluentJira.JiraClient

Sends HTTP requests and receives responses from a JIRA REST API.
Inheritance: FluentClient
Mostrar archivo Open project: Pathoschild/FluentJira

Public Methods

Method Description
JiraClient ( string baseUrl ) : System

Construct an instance.

JiraClient ( string baseUrl, string username, string password ) : System

Construct an instance.

This adds headers for basic authentication. You can provide your own authentication mechanism through the JiraClient.BaseClient.

Method Details

JiraClient() public method

Construct an instance.
public JiraClient ( string baseUrl ) : System
baseUrl string The URL of the JIRA API, including the version (like http://*/rest/api/latest/).
return System

JiraClient() public method

Construct an instance.
This adds headers for basic authentication. You can provide your own authentication mechanism through the JiraClient.BaseClient.
public JiraClient ( string baseUrl, string username, string password ) : System
baseUrl string The URL of the JIRA API, including the version (like http://*/rest/api/latest/).
username string The JIRA username with which to log in.
password string The JIRA password with which to log in.
return System