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

unpublished interface XWebDAVCommandEnvironment
Base Interfaces
XWebDAVCommandEnvironmentXCommandEnvironment

XCommandEnvironment
(referenced interface's summary:)
defines the environment for a command.
Usage Restrictions
not published
Description
A command environment that can be used to deal with WebDAV/HTTP specific commands.

Methods' Summary
getUserRequestHeaders This method gets called while assembling an 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 an 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 aMethod
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