W
www
Unregistered / Unconfirmed
GUEST, unregistred user!
在下面这个事件中处理请求,
procedure TForm1.IdHTTPServer1CommandGet(AThread: TIdPeerThread;
RequestInfo: TIdHTTPRequestInfo; ResponseInfo: TIdHTTPResponseInfo);
begin
ResponseInfo.ContentStream:=TMemorystream.create;
//用ContentStream来响应请求
...
....
end;
可是我在哪里释放ResponseInfo.ContentStream这个对象呢??
因为ResponseInfo.ContentStream是虚类TStream,所以我必须创建它的实例,可是我应该在
哪里释放它呢?
procedure TForm1.IdHTTPServer1CommandGet(AThread: TIdPeerThread;
RequestInfo: TIdHTTPRequestInfo; ResponseInfo: TIdHTTPResponseInfo);
begin
ResponseInfo.ContentStream:=TMemorystream.create;
//用ContentStream来响应请求
...
....
end;
可是我在哪里释放ResponseInfo.ContentStream这个对象呢??
因为ResponseInfo.ContentStream是虚类TStream,所以我必须创建它的实例,可是我应该在
哪里释放它呢?