@@ -8,33 +8,33 @@ namespace NScrape
88 /// </summary>
99 public interface IWebClient
1010 {
11- /// <include file='IWebClient.xml' path='/IWebClient/AddingCookie'/>
11+ /// <include file='IWebClient.xml' path='/IWebClient/AddingCookie/* '/>
1212 event EventHandler < AddingCookieEventArgs > AddingCookie ;
1313
14- /// <include file='IWebClient.xml' path='/IWebClient/SendingRequest'/>
14+ /// <include file='IWebClient.xml' path='/IWebClient/SendingRequest/* '/>
1515 event EventHandler < SendingRequestEventArgs > SendingRequest ;
1616
17- /// <include file='IWebClient.xml' path='/IWebClient/ProcessingResponse'/>
17+ /// <include file='IWebClient.xml' path='/IWebClient/ProcessingResponse/* '/>
1818 event EventHandler < ProcessingResponseEventArgs > ProcessingResponse ;
1919
20- /// <include file='IWebClient.xml' path='/IWebClient/CookieJar'/>
20+ /// <include file='IWebClient.xml' path='/IWebClient/CookieJar/* '/>
2121 CookieContainer CookieJar { get ; }
2222
23- /// <include file='IWebClient.xml' path='/IWebClient/SendRequest_Uri'/>
23+ /// <include file='IWebClient.xml' path='/IWebClient/SendRequest_Uri/* '/>
2424 WebResponse SendRequest ( Uri destination ) ;
25- /// <include file='IWebClient.xml' path='/IWebClient/SendRequest_Uri_bool'/>
25+ /// <include file='IWebClient.xml' path='/IWebClient/SendRequest_Uri_bool/* '/>
2626 WebResponse SendRequest ( Uri destination , bool autoRedirect ) ;
2727
28- /// <include file='IWebClient.xml' path='/IWebClient/SendRequest_Uri_string'/>
28+ /// <include file='IWebClient.xml' path='/IWebClient/SendRequest_Uri_string/* '/>
2929 WebResponse SendRequest ( Uri destination , string requestData ) ;
3030
31- /// <include file='IWebClient.xml' path='/IWebClient/SendRequest_Uri_string_bool'/>
31+ /// <include file='IWebClient.xml' path='/IWebClient/SendRequest_Uri_string_bool/* '/>
3232 WebResponse SendRequest ( Uri destination , string requestData , bool autoRedirect ) ;
3333
34- /// <include file='IWebClient.xml' path='/IWebClient/SendRequest_WebRequest'/>
34+ /// <include file='IWebClient.xml' path='/IWebClient/SendRequest_WebRequest/* '/>
3535 WebResponse SendRequest ( WebRequest webRequest ) ;
3636
37- /// <include file='IWebClient.xml' path='/IWebClient/UserAgent'/>
37+ /// <include file='IWebClient.xml' path='/IWebClient/UserAgent/* '/>
3838 string UserAgent { get ; set ; }
3939 }
4040}
0 commit comments