PPTX/PPT to PDF conversion returns a closed Stream in Aspose.Slides Cloud SDK for .NET

I have the following C# code in a function

var documentApi = new DocumentApi(Strings.AsposeAppSid, Strings.AsposeAppKey);
var request = new PutSlidesConvertRequest(ExportFormat.Pdf, source);
var response = documentApi.PutSlidesConvert(request);

The response Stream object has already been disposed and therefore cannot be read.

In Words this works correctly

var wordsApi = new WordsApi(Strings.AsposeAppKey, Strings.AsposeAppSid);
var format = “pdf”;
var request = new PutConvertDocumentRequest(source, format);
var response = wordsApi.PutConvertDocument(request);

Please advise, thanks

@statto1974

Thanks for your inquiry. We have noticed the reported issue and logged a ticket SLIDESCLOUD-643 in our issue tracking system for further investigation and rectification. We will notify you as soon as it is resolved.

@statto1974

Thanks for your patience. Please note we have already fixed your above reported issue. Please use latest version of Aspose.Slides Cloud SDK for .NET for the fix.