Пример #1
0
 /// <summary>
 /// Creates a new version in an issue tracker. You must supply a name value in the form of a string.
 /// The server creates the id for you and it appears in the return await value.
 /// Public and private issue trackers require the caller to authenticate with an account that has appropriate authorisation.
 /// </summary>
 /// <param name="version">The version.</param>
 /// <returns>The response from the BitBucket API.</returns>
 public async Task <Version> PostVersion(Version version)
 {
     return(await _repositoriesEndPoint.PostVersion(version));
 }