:: com :: sun :: star :: ucb ::

interface XWebDAVCommandEnvironment
Base Interfaces
XWebDAVCommandEnvironmentXCommandEnvironment

XCommandEnvironment
(referenced interface's summary:)

Methods' Summary
getUserRequestHeaders This method gets called while assembling a WebDAV/HTTP request. The returned headername-headervalue pairs will be appended to the list of request headers before the request is dispatched.  
Methods' Details
getUserRequestHeaders
sequence< ::com::sun::star::beans::StringPair >
getUserRequestHeaders( [in] string  aURI,
[in] WebDAVHTTPMethod  eMethod );

Description
This method gets called while assembling a WebDAV/HTTP request. The returned headername-headervalue pairs will be appended to the list of request headers before the request is dispatched.
Parameter aURI
The request URI.
Parameter eMethod
The WebDAV/HTTP method ("GET","PUT","MKCOL",...) as defined in WebDAVHTTPMethod.
Returns
A sequence of header name, header value pairs. The header names must be the plain names and contain no trailing ":".
Top of Page