防止在AngleSharp中重定向

时间:2018-07-25 14:33:13

标签: c# anglesharp

在进行

之类的请求时是否可以防止任何重定向
var context = BrowsingContext.New(new Configuration().WithDefaultLoader().WithCookies());
var response = await context
                        .Configuration
                        .Services
                        .OfType<HttpRequester>()
                        .First()
                        .RequestAsync(
                            new Request
                            {
                                Address = AngleSharp.Url.Create(url),
                                Method = HttpMethod.Post,
                            },
                            CancellationToken.None);   

还是抓住他们?

0 个答案:

没有答案