将 SAFEARRAY 与 VB.Net 结合使用
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
免责声明:我个人并不了解 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.