本文整理汇总了C#中WikiFunctions.Background.BackgroundRequest.BypassRedirects方法的典型用法代码示例。如果您正苦于以下问题:C# BackgroundRequest.BypassRedirects方法的具体用法?C# BackgroundRequest.BypassRedirects怎么用?C# BackgroundRequest.BypassRedirects使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类WikiFunctions.Background.BackgroundRequest
的用法示例。
在下文中一共展示了BackgroundRequest.BypassRedirects方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: bypassAllRedirectsToolStripMenuItem_Click
private void bypassAllRedirectsToolStripMenuItem_Click(object sender, EventArgs e)
{
#if !DEBUG
if (MessageBox.Show("Replacement of links to redirects with direct links is strongly discouraged, " +
"however it could be useful in some circumstances. Are you sure you want to continue?",
"Bypass redirects", MessageBoxButtons.YesNo, MessageBoxIcon.Warning) != DialogResult.Yes)
return;
#endif
BackgroundRequest r = new BackgroundRequest();
Enabled = false;
r.BypassRedirects(txtEdit.Text, TheSession.Editor.SynchronousEditor.Clone());
r.Wait();
Enabled = true;
txtEdit.Text = (string)r.Result;
}
示例2: bypassAllRedirectsToolStripMenuItem_Click
private void bypassAllRedirectsToolStripMenuItem_Click(object sender, EventArgs e)
{
if (MessageBox.Show("Replacement of links to redirects with direct links is strongly discouraged, " +
"however it could be useful in some circumstances. Are you sure you want to continue?",
"Bypass redirects", MessageBoxButtons.YesNo, MessageBoxIcon.Warning) != DialogResult.Yes)
return;
BackgroundRequest r = new BackgroundRequest();
Enabled = false;
r.BypassRedirects(txtEdit.Text);
while (!r.Done) Application.DoEvents();
Enabled = true;
txtEdit.Text = (string)r.Result;
}