We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ebd86d commit 3a9c300Copy full SHA for 3a9c300
docs/ContactsApi.md
@@ -723,7 +723,7 @@ namespace Example
723
var listName = "listName_example"; // string | Name of an existing list to add these contacts to (optional)
724
var encodingName = "encodingName_example"; // string | In what encoding the file is uploaded (optional)
725
var fileUrl = "fileUrl_example"; // string | Optional url of csv to import (optional)
726
- var file = new System.IO.MemoryStream(System.IO.File.ReadAllBytes("/path/to/file.txt")); // System.IO.Stream | (optional)
+ var file = new System.IO.FileStream("/path/to/file.txt", FileMode.Open, FileAccess.Read); // System.IO.Stream | (optional)
727
728
try
729
{
0 commit comments