تحويل OFX ملفات الطلبات والاستجابة في C# API
Contents
[
Hide
]
Aspose.Finance for .NET يدعم تحويل ملفات الطلب والاستجابة OFX بين تنسيق 1.03 و 2.2. توضح الأمثلة C# التالية تحويل ملفات الطلب والاستجابة OFX من تنسيق 1.03 إلى تنسيق 2.2 باستخدام API.
تحويل OFX طلب ملف من تنسيق 1.03 إلى 2.2 بتنسيق .NET
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-finance/Aspose.Finance-for-.NET | |
// Working directories | |
string sourceDir = RunExamples.Get_SourceDirectory(); | |
string outputDir = RunExamples.Get_OutputDirectory(); | |
OfxRequestDocument document = new OfxRequestDocument(sourceDir + @"bankTransactionReq.sgml"); | |
document.Save(outputDir + @"bankTransactionReq.xml", OfxVersionEnum.V2x); |
تحويل ملف استجابة OFX من تنسيق 1.03 إلى 2.2 بتنسيق .NET
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-finance/Aspose.Finance-for-.NET | |
// Working directories | |
string sourceDir = RunExamples.Get_SourceDirectory(); | |
string outputDir = RunExamples.Get_OutputDirectory(); | |
OfxResponseDocument document = new OfxResponseDocument(sourceDir + @"bankTransactionRes.sgml"); | |
document.Save(outputDir + @"bankTransactionRes.xml", OfxVersionEnum.V2x); |