You've already forked lazarus-ccr
* Some string-types are now not returned as function result but as parameter. Solves several string issues. git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2357 8e941d3f-bd1b-0410-a28a-d453659cc2b4
32 lines
1.7 KiB
PHP
32 lines
1.7 KiB
PHP
type
|
|
|
|
nsIHttpChannel = interface(nsIChannel)
|
|
['{9277fe09-f0cc-4cd9-bbce-581dd94b0260}']
|
|
procedure GetrequestMethod( result_: ACString); safecall;
|
|
procedure SetrequestMethod(arequestMethod: ACString); safecall;
|
|
function Getreferrer(): nsIURI; safecall;
|
|
procedure Setreferrer(areferrer: nsIURI); safecall;
|
|
property referrer : nsIURI read Getreferrer write Setreferrer;
|
|
procedure getRequestHeader(aHeader: ACString; result_: ACString); safecall;
|
|
procedure setRequestHeader(aHeader: ACString; aValue: ACString; aMerge: longbool); safecall;
|
|
procedure visitRequestHeaders(aVisitor: nsIHttpHeaderVisitor); safecall;
|
|
function GetallowPipelining(): longbool; safecall;
|
|
procedure SetallowPipelining(aallowPipelining: longbool); safecall;
|
|
property allowPipelining : longbool read GetallowPipelining write SetallowPipelining;
|
|
function GetredirectionLimit(): idlulong; safecall;
|
|
procedure SetredirectionLimit(aredirectionLimit: idlulong); safecall;
|
|
property redirectionLimit : idlulong read GetredirectionLimit write SetredirectionLimit;
|
|
function GetresponseStatus(): idlulong; safecall;
|
|
property responseStatus : idlulong read GetresponseStatus;
|
|
procedure GetresponseStatusText( result_: ACString); safecall;
|
|
function GetrequestSucceeded(): longbool; safecall;
|
|
property requestSucceeded : longbool read GetrequestSucceeded;
|
|
procedure getResponseHeader(header: ACString; result_: ACString); safecall;
|
|
procedure setResponseHeader(header: ACString; value: ACString; merge: longbool); safecall;
|
|
procedure visitResponseHeaders(aVisitor: nsIHttpHeaderVisitor); safecall;
|
|
function isNoStoreResponse() : longbool; safecall;
|
|
function isNoCacheResponse() : longbool; safecall;
|
|
|
|
end;
|
|
|