⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 validationrulehandler.cs

📁 改程序能够查询课程表
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Text;

namespace Common.Utility.Validation
{
   /// <summary>
   /// Delegate providing the signature of all methods that will process validation rules.
   /// </summary>
   /// <remarks>
   /// <para>
   /// The method handler should set the Description attribute of the 
   /// <see cref="ValidationRuleArgs"/> parameter so that a meaningful
   /// error is returned.
   /// </para><para>
   /// If the data is valid, the method must return true.  If the data is invalid,
   /// the Description should be set the false should be returned.
   /// </para>
   /// </remarks>
   public delegate bool ValidationRuleHandler(object target, ValidationRuleArgs e);
   
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -