黄聪:Microsoft Enterprise Library 5.0 系列教程(三) Validation Application Block (高级)

企业库验证应用程序模块之配置文件模式:

 

1.       新建一个控制台应用程序,并创建一个Customer,其代码如下所示:

代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

using Microsoft.Practices.EnterpriseLibrary.Validation.Validators;
using Microsoft.Practices.EnterpriseLibrary.Validation;

namespace ConsoleApplication1
{
class Program
{
static void Main( string [] args)
{
}

public class Customer
{
public string CustomerName;

public Customer( string customerName)
{
this .CustomerName = customerName;
}

public int Test()
{
return - 5 ;
}
}
}

2.       运行EntLibConfig.exe, 选择Blocks菜单 ,单击 Add Validation Settings .

 

3.       点击Validated Types区块右上角的加号按钮,然后点击 Add Type to Validate,这时会要你选择要验证的类,因为我们是想对Customer类的属性进行验证,所以我们要导入我们刚刚创建的类,点击并Add from File找到我们的应用程序Debug文件夹下的ConsoleApplication1.exe(根据你创建时起的名字而不同),Customer类就包含在这个程序内:

 

4.       导入后,我们就可以看到多了个ConsoleApplication1程序集,接着我们要选择它所包含的Customer,如下图所示,选择后点击OK:

 

 

5.       Customer面板上右键— Add Validation Ruleset:

 

6.       在设置Customer面板中的Defaule Ruleset属性为新创建的Validation Ruleset,接着在Validation Ruleset面板右键—Select Members,在弹出的选择框中选择

 

 

7.       在弹出的成员选择界面,我们选择要测试的Test方法和CustomerName属性:

 

 

8.       Field:CustomerName面板上右键—Add Validators –Add Not Null Validator:

 

 

9.       对该验证器的设置如下图所示:


 

10.   Method:Test面板上右键—Add Validators –Add Range Validator:

 

 

11.   对该验证器的设置如下图所示:

 

 

12.   点击 File菜单,单击 Save,保存为一个App.config文件,可以先保存到桌面,之后要用到它.

13.   App.config添加到工程中,并添加需要的引用,如图所示:

 


14.   测试:

代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

using Microsoft.Practices.EnterpriseLibrary.Validation.Validators;
using Microsoft.Practices.EnterpriseLibrary.Validation;

namespace ConsoleApplication1
{
class Program
{
static void Main( string [] args)
{
Validator
< Customer > customerValidator = ValidationFactory.CreateValidator < Customer > ( " Validation Ruleset " );

Customer myCustomer
= new Customer( null );

ValidationResults r
= customerValidator.Validate(myCustomer);

if ( ! r.IsValid)
{
for ( int i = 0 ; i < r.Count; i ++ )
{
Console.WriteLine(
" 出错{0}: " + r.ElementAt(i).Message, i + 1 );
}
}
else
{
Console.WriteLine(
" 正确 " );
}
}
}

public class Customer
{
public string CustomerName;

public Customer( string customerName)
{
this .CustomerName = customerName;
}

public int Test()
{
return - 5 ;
}
}
}

15.   运行结果:

 

Demo下载 \([]  \)

 
springboot003基于Springboot+Vue的图书个性化推荐系统的设计与实现毕业源码案例设计 1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。 6、可私信博主看论文后选择购买源代码。 1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。 6、可私信博主看论文后选择购买源代码。 1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。 6、可私信博主看论文后选择购买源代码。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值