SpiderControllerGetContributorsByName Method

GetContributersByName receives a HttpGet request and returns a list of contributors

Definition

Namespace: spider.Controllers
Assembly: spider (in spider.exe) Version: 1.0.0+fc7a1b35c0f8728ecbe7255d9fa5b4d3324ce3c6
C#
public Task<ActionResult<List<ContributorDto>>> GetContributorsByName(
	string name,
	string ownerName,
	int amount
)

Parameters

name  String
Name of the repository
ownerName  String
Name of the repository owner
amount  Int32
Amount of contributors to return

Return Value

TaskActionResultListContributorDto
A list of contributors in the form of List<ContributorDto>

See Also