Getting an IStream from an OleVariant

寵の児 提交于 2019-12-01 21:56:44

Try this

instream := IUnknown(req.ResponseStream) as IStream;

Edit 1 You must not call FreeAndNil on an interface. FreeAndNil can only be passed an object instance. Failure to do so results in an exception. Since interfaces are reference counted anyway you can simply let them go out of scope and they will be cleaned up. So, you need to remove:

  FreeAndNil(instream);
  FreeAndNil(req);

Edit2: A try to explain what is going on

Please feel free to edit or complement if you think this is not accurate or if it can be explained better.

req.ResponseStream is an OleVariant. The as keyword is doing a call to QueryInterface and that is not implemented by OleVariant.

OleVariant has a built in type conversion from OleVariant to IUnknown so you need to first cast the OleVariant to IUnknown and then use the as operator to do a QueryInterface in order to get the IStream interface.

You can not cast a OleVariant directly to a IStream because there is no built in type conversion from OleVariant to IStream.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!