public void Update(FileUpsert file) { _api.Put().With(file).Stream(_repoPath + "/files", s => { }); }
public void Update(FileUpsert file) { api.Put().With(file).Stream(repoPath + GetFilePath(file.Path, file.Branch), s => { }); }
public Task UpdateAsync(FileUpsert file) { return(api.Put().With(file).StreamAsync(repoPath + GetFilePath(file.Path, file.Branch), s => Task.FromResult(0))); }
public void Create(FileUpsert file) { _api.Post().With(file).Stream(_repoPath + "/files", (s, headers) => { }); }