/// <summary> /// Deletes the board with the specified <paramref name="board"/> identifier. /// </summary> /// <param name="board">The identifier of the board to be retrieved. Can be either the ID of the board or the /// part of the URL like <code><username>/<board_name></code></param> /// <returns>Returns an instance of <see cref="PinterestDeleteBoardResponse"/> representing the response.</returns> public PinterestDeleteBoardResponse DeleteBoard(string board) { if (String.IsNullOrEmpty(board)) { throw new ArgumentNullException("board"); } return(PinterestDeleteBoardResponse.ParseResponse(Raw.DeleteBoard(board))); }
/// <summary> /// Deletes the board with the specified <paramref name="board"/> identifier. /// </summary> /// <param name="board">The identifier of the board to be retrieved. Can be either the ID of the board or the /// part of the URL like <code><username>/<board_name></code></param> /// <returns>An instance of <see cref="PinterestDeleteBoardResponse"/> representing the response.</returns> public PinterestDeleteBoardResponse DeleteBoard(string board) { return(PinterestDeleteBoardResponse.ParseResponse(Raw.DeleteBoard(board))); }