chore(dotnet): generate IDownload.createReadStream method (#6192)

This commit is contained in:
Darío Kondratiuk 2021-04-19 17:28:57 -03:00 committed by GitHub
parent 7ec57c0c18
commit 7dccfd4227
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -55,7 +55,7 @@ not performed and user has no access to the downloaded files.
:::
## async method: Download.createReadStream
* langs: java, js
* langs: java, js, csharp
- returns: <[null]|[Readable]>
Returns readable stream for current download or `null` if download failed.

View File

@ -98,6 +98,7 @@ const customTypeNames = new Map([
classNameMap.set('path', 'string');
classNameMap.set('URL', 'string');
classNameMap.set('RegExp', 'Regex');
classNameMap.set('Readable', 'Stream');
// this are types that we don't explicility render even if we get the specs
const ignoredTypes = ['TimeoutException'];