SpiderProjectServiceGetByKeyword Method

GetByKeyword takes a keyword, an amount and a start cursor and uses these to find the first amount of projects after the start cursor with the keyword as search phrase. The result includes contributors.

Definition

Namespace: spider.Services
Assembly: spider (in spider.exe) Version: 1.0.0+fc7a1b35c0f8728ecbe7255d9fa5b4d3324ce3c6
C#
public Task<List<ProjectDto>> GetByKeyword(
	string name,
	int amount,
	string? startCursor
)

Parameters

name  String
Keyword to search by
amount  Int32
Amount of repositories to return
startCursor  String
The cursor to start searching from. If startCursor is null it starts searching from the start

Return Value

TaskListProjectDto
A list of repositories including contributors in the form of List<ProjectDto>

Implements

ISpiderProjectServiceGetByKeyword(String, Int32, String)

Exceptions

HttpRequestExceptionThrows on NullReferenceException or JsonException

See Also