ISchemaResolver Interface
This interface provides a way for the generated serializers to resolve a schema target namespace. Given an XML file using a particular target namespace, it is important to find the schemas that define the namespace, so the generated serializers can do schema validations properly.
Namespace: Microsoft.VisualStudio.Modeling
Assembly: Microsoft.VisualStudio.Modeling.Sdk.12.0 (in Microsoft.VisualStudio.Modeling.Sdk.12.0.dll)
Syntax
'Declaration
Public Interface ISchemaResolver
public interface ISchemaResolver
public interface class ISchemaResolver
type ISchemaResolver = interface end
public interface ISchemaResolver
The ISchemaResolver type exposes the following members.
Methods
Name | Description | |
---|---|---|
ResolveSchema | This method takes a target namespace string and returns a collection of schema files that define the namespace. |
Top