コード例 #1
0
ファイル: IssuesResource.cs プロジェクト: jsauve/SharpBucket
 /// <summary>
 /// Updates an existing component in an issue tracker.
 /// You must supply a name value in the form of a string.
 /// Public and private issue trackers require the caller to authenticate with an account that has appropriate authorisation.
 /// </summary>
 /// <param name="component">The component.</param>
 /// <returns>The response from the BitBucket API.</returns>
 public async Task <Component> PutComponent(Component component)
 {
     return(await _repositoriesEndPoint.PutComponent(component));
 }