/// <summary> /// Updates a release. /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='releaseId'> /// The ID of the release /// </param> /// <param name='body'> /// The release information. /// </param> /// <param name='ownerName'> /// The name of the owner /// </param> /// <param name='appName'> /// The name of the application /// </param> public static object Update(this IReleases operations, int releaseId, ReleaseUpdateRequest body, string ownerName, string appName) { return(operations.UpdateAsync(releaseId, body, ownerName, appName).GetAwaiter().GetResult()); }