Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.55 KB | None | 0 0
  1.  if (task.OptionID == CompletionOptions.ToInputted.ID)
  2.             {
  3.                 if (string.IsNullOrEmpty(taskSection.RawFields.Get<string>(SchemeInfo.RgsTaskVirtual.ScanQualityName)))
  4.                 {
  5.                     this.ValidationResult
  6.                         .BeginSequence()
  7.                         .SetObjectName(ControlAliases.ScanQuality)
  8.                         .Error(RgsValidationKeys.NullField, LocalizationManager.Localize("$Rgs_CardTypes_Controls_ScanQuality"))
  9.                         .End();
  10.                 }
  11.             }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement