Lines Matching refs:resource

44     that a resource is about to be loaded, data has been received for a resource,
45 an error has been received for a resource, and completion of a resource load.
49 resource. For example, a single resource may generate multiple
50 resource:willSendRequest:redirectResponse:fromDataSource: messages as it's URL is redirected.
60 that can be used to track the load of a single resource. This identifier will be
63 provided by one or more calls to resource:willSendRequest:redirectResponse:fromDataSource:.
70 @method webView:resource:willSendRequest:redirectResponse:fromDataSource:
74 @param identifier An identifier that can be used to track the progress of a resource load across
83 - (NSURLRequest *)webView:(WebView *)sender resource:(id)identifier willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)redirectResponse fromDataSource:(WebDataSource *)dataSource;
86 @method webView:resource:didReceiveAuthenticationChallenge:fromDataSource:
87 @abstract Start authentication for the resource, providing a challenge
94 - (void)webView:(WebView *)sender resource:(id)identifier didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource;
97 @method webView:resource:didCancelAuthenticationChallenge:fromDataSource:
101 - (void)webView:(WebView *)sender resource:(id)identifier didCancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource;
104 @method webView:resource:didReceiveResponse:fromDataSource:
107 @param identifier An identifier that can be used to track the progress of a resource load across
113 should assume that each new response resets progress so far for the resource back to 0,
116 - (void)webView:(WebView *)sender resource:(id)identifier didReceiveResponse:(NSURLResponse *)response fromDataSource:(WebDataSource *)dataSource;
119 @method webView:resource:didReceiveContentLength:fromDataSource:
122 @param identifier An identifier that can be used to track the progress of a resource load across
127 - (void)webView:(WebView *)sender resource:(id)identifier didReceiveContentLength:(WebNSInteger)length fromDataSource:(WebDataSource *)dataSource;
130 @method webView:resource:didFinishLoadingFromDataSource:
133 @param identifier An identifier that can be used to track the progress of a resource load across
137 - (void)webView:(WebView *)sender resource:(id)identifier didFinishLoadingFromDataSource:(WebDataSource *)dataSource;
140 @method webView:resource:didFailLoadingWithError:fromDataSource:
143 @param identifier An identifier that can be used to track the progress of a resource load across
148 - (void)webView:(WebView *)sender resource:(id)identifier didFailLoadingWithError:(NSError *)error fromDataSource:(WebDataSource *)dataSource;