本文整理汇总了C#中System.TimeSpan.IsMaxValue方法的典型用法代码示例。如果您正苦于以下问题:C# TimeSpan.IsMaxValue方法的具体用法?C# TimeSpan.IsMaxValue怎么用?C# TimeSpan.IsMaxValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.TimeSpan
的用法示例。
在下文中一共展示了TimeSpan.IsMaxValue方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: btnCancelUpdate_Click
//.........这里部分代码省略.........
if (!string.IsNullOrWhiteSpace(txtLockDurationHours.Text))
{
if (!int.TryParse(txtLockDurationHours.Text, out hours))
{
writeToLog(LockDurationHoursMustBeANumber);
return;
}
}
if (!string.IsNullOrWhiteSpace(txtLockDurationMinutes.Text))
{
if (!int.TryParse(txtLockDurationMinutes.Text, out minutes))
{
writeToLog(LockDurationMinutesMustBeANumber);
return;
}
}
if (!string.IsNullOrWhiteSpace(txtLockDurationSeconds.Text))
{
if (!int.TryParse(txtLockDurationSeconds.Text, out seconds))
{
writeToLog(LockDurationSecondsMustBeANumber);
return;
}
}
if (!string.IsNullOrWhiteSpace(txtLockDurationMilliseconds.Text))
{
if (!int.TryParse(txtLockDurationMilliseconds.Text, out milliseconds))
{
writeToLog(LockDurationMillisecondsMustBeANumber);
return;
}
}
var timeSpan = new TimeSpan(days, hours, minutes, seconds, milliseconds);
if (!timeSpan.IsMaxValue())
{
subscriptionWrapper.SubscriptionDescription.LockDuration = timeSpan;
}
}
days = 0;
hours = 0;
minutes = 0;
seconds = 0;
milliseconds = 0;
if (!string.IsNullOrWhiteSpace(txtAutoDeleteOnIdleDays.Text) ||
!string.IsNullOrWhiteSpace(txtAutoDeleteOnIdleHours.Text) ||
!string.IsNullOrWhiteSpace(txtAutoDeleteOnIdleMinutes.Text) ||
!string.IsNullOrWhiteSpace(txtAutoDeleteOnIdleSeconds.Text) ||
!string.IsNullOrWhiteSpace(txtAutoDeleteOnIdleMilliseconds.Text))
{
if (!string.IsNullOrWhiteSpace(txtAutoDeleteOnIdleDays.Text))
{
if (!int.TryParse(txtAutoDeleteOnIdleDays.Text, out days))
{
writeToLog(AutoDeleteOnIdleDaysMustBeANumber);
return;
}
}
if (!string.IsNullOrWhiteSpace(txtAutoDeleteOnIdleHours.Text))
{
if (!int.TryParse(txtAutoDeleteOnIdleHours.Text, out hours))
{
writeToLog(AutoDeleteOnIdleHoursMustBeANumber);
return;
}
示例2: btnCancelUpdate_Click
private void btnCancelUpdate_Click(object sender, EventArgs e)
{
if (btnCancelUpdate.Text == CancelText)
{
if (OnCancel != null)
{
OnCancel();
}
}
else
{
try
{
topicDescription.UserMetadata = txtUserMetadata.Text;
var days = 0;
var hours = 0;
var minutes = 0;
var seconds = 0;
var milliseconds = 0;
if (!string.IsNullOrWhiteSpace(txtDefaultMessageTimeToLiveDays.Text) ||
!string.IsNullOrWhiteSpace(txtDefaultMessageTimeToLiveHours.Text) ||
!string.IsNullOrWhiteSpace(txtDefaultMessageTimeToLiveMinutes.Text) ||
!string.IsNullOrWhiteSpace(txtDefaultMessageTimeToLiveSeconds.Text) ||
!string.IsNullOrWhiteSpace(txtDefaultMessageTimeToLiveMilliseconds.Text))
{
if (!string.IsNullOrWhiteSpace(txtDefaultMessageTimeToLiveDays.Text))
{
if (!int.TryParse(txtDefaultMessageTimeToLiveDays.Text, out days))
{
writeToLog(DefaultMessageTimeToLiveDaysMustBeANumber);
return;
}
}
if (!string.IsNullOrWhiteSpace(txtDefaultMessageTimeToLiveHours.Text))
{
if (!int.TryParse(txtDefaultMessageTimeToLiveHours.Text, out hours))
{
writeToLog(DefaultMessageTimeToLiveHoursMustBeANumber);
return;
}
}
if (!string.IsNullOrWhiteSpace(txtDefaultMessageTimeToLiveMinutes.Text))
{
if (!int.TryParse(txtDefaultMessageTimeToLiveMinutes.Text, out minutes))
{
writeToLog(DefaultMessageTimeToLiveMinutesMustBeANumber);
return;
}
}
if (!string.IsNullOrWhiteSpace(txtDefaultMessageTimeToLiveSeconds.Text))
{
if (!int.TryParse(txtDefaultMessageTimeToLiveSeconds.Text, out seconds))
{
writeToLog(DefaultMessageTimeToLiveSecondsMustBeANumber);
return;
}
}
if (!string.IsNullOrWhiteSpace(txtDefaultMessageTimeToLiveMilliseconds.Text))
{
if (!int.TryParse(txtDefaultMessageTimeToLiveMilliseconds.Text, out milliseconds))
{
writeToLog(DefaultMessageTimeToLiveMillisecondsMustBeANumber);
return;
}
}
var timeSpan = new TimeSpan(days, hours, minutes, seconds, milliseconds);
if (!timeSpan.IsMaxValue())
{
topicDescription.DefaultMessageTimeToLive = timeSpan;
}
}
days = 0;
hours = 0;
minutes = 0;
seconds = 0;
milliseconds = 0;
if (!string.IsNullOrWhiteSpace(txtDuplicateDetectionHistoryTimeWindowDays.Text) ||
!string.IsNullOrWhiteSpace(txtDuplicateDetectionHistoryTimeWindowHours.Text) ||
!string.IsNullOrWhiteSpace(txtDuplicateDetectionHistoryTimeWindowMinutes.Text) ||
!string.IsNullOrWhiteSpace(txtDuplicateDetectionHistoryTimeWindowSeconds.Text) ||
!string.IsNullOrWhiteSpace(txtDuplicateDetectionHistoryTimeWindowMilliseconds.Text))
{
if (!string.IsNullOrWhiteSpace(txtDuplicateDetectionHistoryTimeWindowDays.Text))
{
if (!int.TryParse(txtDuplicateDetectionHistoryTimeWindowDays.Text, out days))
{
writeToLog(DuplicateDetectionHistoryTimeWindowDaysMustBeANumber);
return;
}
}
if (!string.IsNullOrWhiteSpace(txtDuplicateDetectionHistoryTimeWindowHours.Text))
{
if (!int.TryParse(txtDuplicateDetectionHistoryTimeWindowHours.Text, out hours))
{
writeToLog(DuplicateDetectionHistoryTimeWindowHoursMustBeANumber);
return;
//.........这里部分代码省略.........
示例3: btnCancelUpdate_Click
private void btnCancelUpdate_Click(object sender, EventArgs e)
{
if (btnCancelUpdate.Text == CancelText)
{
if (OnCancel != null)
{
OnCancel();
}
}
else
{
try
{
if (String.Equals(txtPath.Text.Trim(), txtForwardTo.Text.Trim(), StringComparison.CurrentCultureIgnoreCase))
{
writeToLog(CannotForwardToItself);
txtForwardTo.Focus();
return;
}
if (String.Equals(txtPath.Text.Trim(), txtForwardDeadLetteredMessagesTo.Text.Trim(), StringComparison.CurrentCultureIgnoreCase))
{
writeToLog(CannotForwardDeadLetteredMessagesToItself);
txtForwardTo.Focus();
return;
}
queueDescription.UserMetadata = txtUserMetadata.Text;
queueDescription.ForwardTo = string.IsNullOrWhiteSpace(txtForwardTo.Text) ? null : txtForwardTo.Text;
queueDescription.ForwardDeadLetteredMessagesTo = string.IsNullOrWhiteSpace(txtForwardDeadLetteredMessagesTo.Text) ? null : txtForwardDeadLetteredMessagesTo.Text;
if (!string.IsNullOrWhiteSpace(txtMaxDeliveryCount.Text))
{
int value;
if (int.TryParse(txtMaxDeliveryCount.Text, out value))
{
queueDescription.MaxDeliveryCount = value;
}
else
{
writeToLog(MaxDeliveryCountMustBeANumber);
return;
}
}
var days = 0;
var hours = 0;
var minutes = 0;
var seconds = 0;
var milliseconds = 0;
if (!string.IsNullOrWhiteSpace(txtDefaultMessageTimeToLiveDays.Text) ||
!string.IsNullOrWhiteSpace(txtDefaultMessageTimeToLiveHours.Text) ||
!string.IsNullOrWhiteSpace(txtDefaultMessageTimeToLiveMinutes.Text) ||
!string.IsNullOrWhiteSpace(txtDefaultMessageTimeToLiveSeconds.Text) ||
!string.IsNullOrWhiteSpace(txtDefaultMessageTimeToLiveMilliseconds.Text))
{
if (!string.IsNullOrWhiteSpace(txtDefaultMessageTimeToLiveDays.Text))
{
if (!int.TryParse(txtDefaultMessageTimeToLiveDays.Text, out days))
{
writeToLog(DefaultMessageTimeToLiveDaysMustBeANumber);
return;
}
}
if (!string.IsNullOrWhiteSpace(txtDefaultMessageTimeToLiveHours.Text))
{
if (!int.TryParse(txtDefaultMessageTimeToLiveHours.Text, out hours))
{
writeToLog(DefaultMessageTimeToLiveHoursMustBeANumber);
return;
}
}
if (!string.IsNullOrWhiteSpace(txtDefaultMessageTimeToLiveMinutes.Text))
{
if (!int.TryParse(txtDefaultMessageTimeToLiveMinutes.Text, out minutes))
{
writeToLog(DefaultMessageTimeToLiveMinutesMustBeANumber);
return;
}
}
if (!string.IsNullOrWhiteSpace(txtDefaultMessageTimeToLiveSeconds.Text))
{
if (!int.TryParse(txtDefaultMessageTimeToLiveSeconds.Text, out seconds))
{
writeToLog(DefaultMessageTimeToLiveSecondsMustBeANumber);
return;
}
}
if (!string.IsNullOrWhiteSpace(txtDefaultMessageTimeToLiveMilliseconds.Text))
{
if (!int.TryParse(txtDefaultMessageTimeToLiveMilliseconds.Text, out milliseconds))
{
writeToLog(DefaultMessageTimeToLiveMillisecondsMustBeANumber);
return;
}
}
var timeSpan = new TimeSpan(days, hours, minutes, seconds, milliseconds);
if (!timeSpan.IsMaxValue())
{
//.........这里部分代码省略.........