You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TableOperation insert = TableOperation.InsertOrReplace(disasterAzureTable);
var tableResult = await _azureTable.ExecuteAsync(insert);
if (tableResult.HttpStatusCode == (int) HttpStatusCode.NoContent)
Console.WriteLine("Is this a success, an error, or did we replace instead of insert?");
What does it mean when the HttpStatusCode for the TableResult is NoContent (204)?
Document Details
⚠ Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.
ID: 0dbb0a68-bef9-a416-9336-65cd598cb8b4
Version Independent ID: 31128659-e37d-27ce-0db3-ee33803fd97d
Thanks for the feedback! We are routing this to the appropriate team for follow-up. cc @wmengmsft, @MehaKaushik, @shurd.
Issue Details
Say I have code like this:
TableOperation insert = TableOperation.InsertOrReplace(disasterAzureTable);
var tableResult = await _azureTable.ExecuteAsync(insert);
if (tableResult.HttpStatusCode == (int) HttpStatusCode.NoContent)
Console.WriteLine("Is this a success, an error, or did we replace instead of insert?");
What does it mean when the HttpStatusCode for the TableResult is NoContent (204)?
Document Details
⚠ Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.
ID: 0dbb0a68-bef9-a416-9336-65cd598cb8b4
Version Independent ID: 31128659-e37d-27ce-0db3-ee33803fd97d
Say I have code like this:
What does it mean when the HttpStatusCode for the TableResult is NoContent (204)?
Document Details
⚠ Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.
The text was updated successfully, but these errors were encountered: