Is there a standard framework (maybe part of Enterprise Library... or .NET itself) that allows you to do common parameter validation in method attributes?
|
|
|
|
|
|
|
The Microsoft Enterprise Library has the Microsoft.Practices.EnterpriseLibrary.Validation library/namespace which allows validation using attributes. |
||
|
|
|
Microsoft Code Contracts, which are part of .NET Framework 4.0 CTP and are available for earlier .NET Framework versions as a stand-alone package, allow to specifiy coding assumptions. This includes specifying pre-conditions which can verify parameters. An example use for parameter checking would be (copied from Code Contracts documentation):
The benefit of using Code Contracts is that it is a library which will most likely be part of future .NET Framework releases, so sooner or later you will have one dependency less in your application. EDIT: Just noticed that your specifically asking for a library that uses Attributes for argument checking... that Code Contracts does not. The reason why Code Contracts does not use attributes is listed in their FAQ:
|
|||
|
|
|
|
Dynamic Data for ASP.NET (and ASP.NET MVC) lets you do validation for model properties using attributes. |
||
|
|
|
|
You could also use postsharp and implement your own attributes for validation. |
||
|
|
