Saxon.Api
Class ResourceCollection
- Direct Known Subclasses
- CatalogCollection, DirectoryCollection, JarCollection
-
public class ResourceCollection
- implements IResourceCollection
ResourceCollection class that implements the IResourceCollection interface. This class is used to map the URI of collection into a sequence of Resource objects. It is used to support the fn:collection() and fn:uri-collection() functions.
Method Summary |
|
---|---|
string | CollectionURI() Get the URI of the collection |
List<IResource> | GetResources(DynamicContext context) Get the resources in the collection. This supports the fn:collection() function. It is not required that all collections expose a set of resources in this way, or that the resources returned bear any particular relationship to the URIs returned by the getResourceURIs() method for the same collection URI. |
List<string> | GetResourceURIs(DynamicContext context) Get the URIs of the resources in the collection. This supports the fn:uri-collection() function.It is not required that all collections expose a list of URIs in this way, or that the URIs bear any particular relationship to the resources returned by the getResources() method for the same collection URI.The URIs that are returned should be suitable for passing to the registered URIResolver (in the case of XML resources), or the { @link UnparsedTextURIResolver } (in the case of unparsed text and JSON resources), etc. |
bool | IsStable(DynamicContext context) Ask whether the collection is stable: in this case Saxon will retain the contents of the collection in memory, and will not make a second request on the CollectionFinder for the same collection URI. |
Method Detail
CollectionURI
GetResources
Get the resources in the collection. This supports the fn:collection() function. It is not required that all collections expose a set of resources in this way, or that the resources returned bear any particular relationship to the URIs returned by the getResourceURIs() method for the same collection URI.
Parameters:
context
- the XPath evaluation contextReturns:
Riesource
.GetResourceURIs
Get the URIs of the resources in the collection. This supports the fn:uri-collection() function.It is not required that all collections expose a list of URIs in this way, or that the URIs bear any particular relationship to the resources returned by the getResources() method for the same collection URI.The URIs that are returned should be suitable for passing to the registered URIResolver (in the case of XML resources), or the { @link UnparsedTextURIResolver } (in the case of unparsed text and JSON resources), etc.
Parameters:
context
- the XPath evaluation contextReturns:
IsStable
Ask whether the collection is stable: in this case Saxon will retain the contents of the collection in memory, and will not make a second request on the CollectionFinder for the same collection URI.
Parameters:
context
- the XPath dynamic evaluation context (in case the decision is context dependent)
Get the URI of the collection
Returns: