public async Task UpdateInfographicAsync(Infographic infographic, Element[] content, bool?publish = null, string publishMode = null, string password = null, string title = null, int?width = null, string copyright = null) { await UpdateInfographicAsync(infographic.Id, infographic.ThemeId, content != null?JsonConvert.SerializeObject(content) : null, publish, publishMode, password, title, width, copyright); }
public async Task UpdateInfographicAsync(Infographic infographic, string content = null, bool?publish = null, string publishMode = null, string password = null, string title = null, int?width = null, string copyright = null) { await UpdateInfographicAsync(infographic.Id, infographic.ThemeId, content, publish, publishMode, password, title, width, copyright); }