Как предоставить ссылку на файл шаблона из хранилища Azure в операции слияния документов Adobe.PDFServicesSDK
Я пытаюсь дать ссылку на файл из облачного хранилища. Ниже код берет ссылку на файл из локального пути. Я пишу лазурную функцию, поэтому мне нужно заменить приведенную ниже логику лазурным хранилищем. Не могли бы вы мне помочь?
// Create a new DocumentMerge Options instance
DocumentMergeOptions documentMergeOptions = new DocumentMergeOptions(jsonDataForMerge, OutputFormat.PDF);
// Create a new DocumentMerge Operation instance with the DocumentMerge Options instance
DocumentMergeOperation documentMergeOperation = DocumentMergeOperation.CreateNew(documentMergeOptions);
// Set the operation input document template from a source file.
//documentMergeOperation.SetInput(FileRef.CreateFromLocalFile("C:\\Work\\Study\\C# Tutorial\\Tekura.PDFSigning\\Tekura.PDFSigning.DocumentCreate\\" + @"salesOrderTemplate.docx"));