private static async Task DeleteNote()

in dotnet/azure-functions/FunctionApp/Notes.cs [167:171]


        private static async Task<bool> DeleteNote(string id)
        {
            ItemResponse<Note> response = await Container.DeleteItemAsync<Note>(id, new PartitionKey(id));
            return response.StatusCode == System.Net.HttpStatusCode.NoContent;
        }