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
Copy file name to clipboardExpand all lines: src/GoogleSheetsWrapper/SheetAppender.cs
+18-14Lines changed: 18 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -43,48 +43,51 @@ public SheetAppender(SheetHelper sheetHelper)
43
43
publicvoidInit(stringjsonCredentials)
44
44
{
45
45
_sheetHelper.Init(jsonCredentials);
46
-
}
47
-
46
+
}
47
+
48
48
/// <summary>
49
49
/// Appends a CSV file and all its rows into the current Google Sheets tab
50
50
/// </summary>
51
51
/// <param name="filePath"></param>
52
-
/// <param name="includeHeaders"></param>
53
-
/// <param name="batchWaitTime">See https://developers.google.com/sheets/api/limits at last check is 60 requests a minute, so 1 second delay per request should avoid limiting</param>
52
+
/// <param name="csvHasHeaderRecord">This boolean indicates whether the CSV file has a header record row or not</param>
53
+
/// <param name="batchWaitTime">See https://developers.google.com/sheets/api/limits at last check is 60 requests a minute, so 1 second delay per request should avoid limiting</param>
54
54
/// <param name="batchSize">Increasing batch size may improve throughput. Default is conservative.</param>
/// Appends a CSV file and all its rows into the current Google Sheets tab
65
66
/// </summary>
66
67
/// <param name="stream"></param>
67
-
/// <param name="includeHeaders"></param>
68
-
/// <param name="batchWaitTime">See https://developers.google.com/sheets/api/limits at last check is 60 requests a minute, so 1 second delay per request should avoid limiting</param>
68
+
/// <param name="csvHasHeaderRecord">This boolean indicates whether the CSV file has a header record row or not</param>
69
+
/// <param name="batchWaitTime">See https://developers.google.com/sheets/api/limits at last check is 60 requests a minute, so 1 second delay per request should avoid limiting</param>
69
70
/// <param name="batchSize">Increasing batch size may improve throughput. Default is conservative.</param>
/// Appends a CSV file and all its rows into the current Google Sheets tab
82
84
/// </summary>
83
85
/// <param name="stream"></param>
84
86
/// <param name="csvConfig"></param>
85
-
/// <param name="batchWaitTime">See https://developers.google.com/sheets/api/limits at last check is 60 requests a minute, so 1 second delay per request should avoid limiting</param>
87
+
/// <param name="batchWaitTime">See https://developers.google.com/sheets/api/limits at last check is 60 requests a minute, so 1 second delay per request should avoid limiting</param>
86
88
/// <param name="batchSize">Increasing batch size may improve throughput. Default is conservative.</param>
0 commit comments