SchemaValidator Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
This abstract class allows any available library to be used to generate schemas from .NET types and validate objects against schemas.
public abstract class SchemaValidator
type SchemaValidator = class
Public MustInherit Class SchemaValidator
- Inheritance
-
SchemaValidator
Remarks
Defining both GenerateSchema(Type) and TryValidate(Object, Type, String, IEnumerable<Exception>) is required. If you do not wish to validate, then evaluate all schemas as valid.
Constructors
SchemaValidator() |
Methods
GenerateSchema(Type) |
Generates a schema from |
TryValidate(Object, Type, String, IEnumerable<Exception>) |
Validates that |