internal Task CreateAsync() => languageServer.SendRequestAsync( NewCustomViewRequest.Method, new NewCustomViewRequest { Id = Id, Title = Title, ViewType = ViewType, });
internal async Task CreateAsync() { await languageServer.SendRequestAsync( NewCustomViewRequest.Method, new NewCustomViewRequest { Id = this.Id, Title = this.Title, ViewType = this.ViewType, } ); }