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