本文整理汇总了C#中System.Net.WebClient.TrimEnd方法的典型用法代码示例。如果您正苦于以下问题:C# WebClient.TrimEnd方法的具体用法?C# WebClient.TrimEnd怎么用?C# WebClient.TrimEnd使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Net.WebClient
的用法示例。
在下文中一共展示了WebClient.TrimEnd方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: TweetTextBox_KeyDown
private void TweetTextBox_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Enter && (e.Modifiers & Keys.Shift) == Keys.Shift) // Shift+Enterで送信
{
if (TweetTextBox.Text != "")
{
try
{
string tweet = TweetTextBox.Text;
// URL短縮を行う場合は、ツイート本文からURLを探して短縮する
try
{
if (this.config.UseBitLy)
{
/*
* 参考: http://d.hatena.ne.jp/seto-san/20090123/1232679235
*/
Regex regex = new Regex(@"https?(:\/\/[-_.!~*\'()a-zA-Z0-9;\/?:\@&=+\$,%#]+)");
Match m = regex.Match(tweet);
if (m.Success)
{
string apiUrl = @"http://api.bit.ly/v3/shorten?login={0}&apiKey={1}&longUrl={2}&format=txt";
if (this.config.BitLyUseJmp)
{
apiUrl += @"&domain=j.mp";
}
string url = string.Format(apiUrl, this.config.BitLyUserID, this.config.BitLyAPIKey, m.Value);
string result = new WebClient().DownloadString(url);
result = result.TrimEnd();
tweet = tweet.Replace(m.Value, result);
}
}
}
catch
{
// エラーが発生した場合は、URL短縮せずに通常通りステータス更新
}
UpdateStatus(tweet);
}
catch
{
KumaHodaiToolStripStatusLabel.Text = "エラー: ステータスの更新に失敗しました。";
}
finally
{
TweetTextBox.Text = "";
KumaHodaiToolStripStatusLabel.Text = "";
inReplyToStatusId = -1;
TweetTextBox.Enabled = false;
this.KeyPreview = true;
}
}
e.SuppressKeyPress = true;
TimelineListView.Focus(); // 注意: TextBoxからFocusを外しておかないと、beepが鳴ることがある
}
else if (e.KeyCode == Keys.Escape)
{
TweetTextBox.Text = "";
TweetTextBox.Enabled = false;
KumaHodaiToolStripStatusLabel.Text = "";
inReplyToStatusId = -1;
this.KeyPreview = true;
e.SuppressKeyPress = true;
TimelineListView.Focus(); // 注意: TextBoxからFocusを外しておかないと、beepが鳴ることがある
}
}