Home | History | Annotate | Download | only in Interfaces

Lines Matching refs:request

67         @param request The request about to be sent.
72 identifier is useful to track changes to a resources request, which will be
76 - (id)webView:(WebView *)sender identifierForInitialRequest:(NSURLRequest *)request fromDataSource:(WebDataSource *)dataSource;
78 HRESULT identifierForInitialRequest([in] IWebView* webView, [in] IWebURLRequest* request, [in] IWebDataSource* dataSource, [in] unsigned long identifier);
82 @discussion This message is sent before a load is initiated. The request may be modified
87 @param request The request about to be sent.
88 @param redirectResponse If the request is being made in response to a redirect we received,
91 @result Returns the request, which may be mutated by the implementor, although typically
92 will be request.
93 - (NSURLRequest *)webView:(WebView *)sender resource:(id)identifier willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)redirectResponse fromDataSource:(WebDataSource *)dataSource;
95 HRESULT willSendRequest([in] IWebView* webView, [in] unsigned long identifier, [in] IWebURLRequest* request, [in] IWebURLResponse* redirectResponse, [in] IWebDataSource* dataSource, [out, retval] IWebURLRequest** newRequest);
111 @abstract Cancel authentication for a given request
123 @param response The response for the request.