コード例 #1
0
 /// <summary>
 /// Removes a branch.
 /// </summary>
 /// <returns></returns>
 public Branch DeleteBranch(string branchName)
 {
     return(_repositoriesEndPoint.DeleteBranch(_accountName, _slug, branchName));
 }
コード例 #2
0
 /// <summary>
 /// Removes a branch.
 /// </summary>
 /// <param name="branchName">The name of the branch to delete.</param>
 public void DeleteBranch(string branchName)
 {
     _repositoriesEndPoint.DeleteBranch(_accountName, _slug, branchName);
 }