Skip to content

Commit 283805d

Browse files
authored
Update VerificationsApi.md
Changed MemoryStream to FileStream
1 parent 9d7e7f5 commit 283805d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/VerificationsApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -709,7 +709,7 @@ namespace Example
709709
// config.AddApiKeyPrefix("X-ElasticEmail-ApiKey", "Bearer");
710710
711711
var apiInstance = new VerificationsApi(config);
712-
var file = new System.IO.MemoryStream(System.IO.File.ReadAllBytes("/path/to/file.txt")); // System.IO.Stream | (optional)
712+
var file = new System.IO.FileStream("/path/to/file.txt", FileMode.Open, FileAccess.Read); // System.IO.Stream | (optional)
713713
714714
try
715715
{

0 commit comments

Comments
 (0)