/// <summary>Snippet for DeleteRow</summary> public void DeleteRow() { // Snippet: DeleteRow(string, CallSettings) // Create client TablesServiceClient tablesServiceClient = TablesServiceClient.Create(); // Initialize request argument(s) string name = "tables/[TABLE]/rows/[ROW]"; // Make the request tablesServiceClient.DeleteRow(name); // End snippet }
/// <summary>Snippet for DeleteRow</summary> public void DeleteRowResourceNames() { // Snippet: DeleteRow(RowName, CallSettings) // Create client TablesServiceClient tablesServiceClient = TablesServiceClient.Create(); // Initialize request argument(s) RowName name = RowName.FromTableRow("[TABLE]", "[ROW]"); // Make the request tablesServiceClient.DeleteRow(name); // End snippet }
/// <summary>Snippet for DeleteRow</summary> /// <remarks> /// This snippet has been automatically generated for illustrative purposes only. /// It may require modifications to work in your environment. /// </remarks> public void DeleteRowRequestObject() { // Create client TablesServiceClient tablesServiceClient = TablesServiceClient.Create(); // Initialize request argument(s) DeleteRowRequest request = new DeleteRowRequest { RowName = RowName.FromTableRow("[TABLE]", "[ROW]"), }; // Make the request tablesServiceClient.DeleteRow(request); }