EnterpriseMigrationUnlockRepository() public static method

public static EnterpriseMigrationUnlockRepository ( string org, int id, string repo ) : Uri
org string
id int
repo string
return System.Uri
Esempio n. 1
0
        public Task UnlockRepository(string org, int id, string repo)
        {
            Ensure.ArgumentNotNullOrEmptyString(org, nameof(org));
            Ensure.ArgumentNotNullOrEmptyString(repo, nameof(repo));

            var endpoint = ApiUrls.EnterpriseMigrationUnlockRepository(org, id, repo);

            return(ApiConnection.Delete(endpoint, new object(), AcceptHeaders.MigrationsApiPreview));
        }