コード例 #1
0
        async Task postLocationAsync()
        {
            BirdLocationModel model = new BirdLocationModel()
            {
                Longitude = Lon,
                Latitude  = Lat,
                Bird      = TagLabel.Text
            };

            await AzureManager.AzureManagerInstance.PostBirdLocation(model);
        }
コード例 #2
0
 public async Task PostBirdLocation(BirdLocationModel birdLocationTable)
 {
     await this.birdLocationTable.InsertAsync(birdLocationTable);
 }