将 SAFEARRAY 与 VB.Net 结合使用

发布于 2024-08-08 14:22:27 字数 259 浏览 0 评论 0原文

我正在使用 BusinessObjects SDK 与其存储库中的对象进行交互。

文件类具有用于向文件存储库服务器(存储 Crystal Reports 之类的文件的位置)发送/接收(CopyTo 和 Overwrite)二进制数据的方法,这两种方法都具有支持“二进制数据(VT_UI1 的 safearray)”的重载。

虽然我没有任何使用 SAFEARRAY 的经验,但我怀疑它并不等同于 Byte()。

任何指导,尤其是代码方面的指导,都将受到赞赏。

I'm using the BusinessObjects SDK to interact with objects in its repository.

The File Class has methods for sending/receiving (CopyTo and Overwrite) binary data to/from the File Repository Server (where files like Crystal Reports are stored), both of which have an overload that supports 'Binary data (safearray of VT_UI1)'.

While I don't have any experience with SAFEARRAYs, I suspect it isn't equivalent to Byte().

Any guidance, especially with code, is appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

动听の歌 2024-08-15 14:22:27

免责声明:我个人并不了解 BusinessObjects SDK,但术语“VT_UI1 的 SAFEARRAY”是 COM,因此我假设它是您通过 COM 互操作调用的 COM API。

VT_UI1 的 SAFEARRAY 相当于 .NET 中的 Byte() 的 COM,因此从一个到另一个的编组应该不会有问题; RCW 课程应该可以为你做到这一点。

Disclaimer: I don't personally know the BusinessObjects SDK, but the terminology "SAFEARRAY of VT_UI1" is COM, so I'm assuming it's a COM API that you are calling via COM interop.

SAFEARRAY of VT_UI1 is the COM equivalent of Byte() in .NET, so you should not have a problem marshalling from one to the other; the RCW class should just do it for you.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文