Saxon.Api
Class XsdCompiler.SchemaSource
- Enclosing class
- XsdCompiler
-
public class XsdCompiler.SchemaSource
Embedded class defining the source for a particular schema document.
Constructor Summary |
|
|---|---|
| SchemaSource (Stream stream, Uri uri)
A schema document supplied in the form of a stream, together with a Uri that defines
the base URI for resolving any |
|
| SchemaSource (Stream stream)
A schema document supplied in the form of a stream. No base URI is defined,
so resolving any |
|
| SchemaSource (TextReader reader, Uri uri)
A schema document supplied in the form of a text reader, together with a Uri that
defines
the base URI for resolving any |
|
| SchemaSource (Uri uri) A schema document supplied in the form of a Uri, which is dereferenced directly (without using any resolver) |
|
| SchemaSource (TextReader reader)
A schema document supplied in the form of a text reader. No base URI is defined,
so resolving any |
|
| SchemaSource (FileInfo file)
A schema document supplied in the form of a |
|
| SchemaSource (XdmNode node)
A schema document supplied in the form of an |
|
| SchemaSource (Processor processor, XmlReader reader)
A schema document supplied in the form of an |
|
Constructor Detail
SchemaSource
A schema document supplied in the form of a stream, together with a Uri that defines
the base URI for resolving any xs:include or xs:import declarations.
Parameters:
stream - The input streamuri - The base URISchemaSource
A schema document supplied in the form of a stream. No base URI is defined,
so resolving any xs:include or xs:import declarations is likely to fail.
Parameters:
stream - The input streamSchemaSource
A schema document supplied in the form of a text reader, together with a Uri that
defines
the base URI for resolving any xs:include or xs:import declarations.
Parameters:
reader - The text readeruri - The base URISchemaSource
A schema document supplied in the form of a Uri, which is dereferenced directly (without using any resolver)
Parameters:
uri - The base URISchemaSource
A schema document supplied in the form of a text reader. No base URI is defined,
so resolving any xs:include or xs:import declarations is likely to fail.
Parameters:
reader - The text readerSchemaSource
A schema document supplied in the form of a FileInfo
Parameters:
file - The input fileSchemaSource
A schema document supplied in the form of an XdmNode
Parameters:
node - The input node