BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
async void GetData(string cityCode) { //To set DataSource to the AutoComplete Control ItemsSource = await restservice.RefreshDataAsync(cityCode); . . . } |
public async System.Threading.Tasks.Task<ObservableCollection<Post>> RefreshDataAsync(string cityPinCode) { //Adding URL data to the DataSource of AutoComplete areaCollection = new ObservableCollection<Post>(); RestUrl = "https://jsonplaceholder.typicode.com/todos/" + cityPinCode; var uri = new Uri(RestUrl); } |