StaticContextSettings.CollationResolver PropertyStaticContextSettings.CollationResolver PropertyStaticContextSettings::CollationResolver Property

Gets or sets the resolver for collation URIs .

Syntax

Public Property CollationResolver As ICollationResolver
        Get
        Set(ByVal value As ICollationResolver)
public ICollationResolver CollationResolver { get; set; }
public:
property ICollationResolver^ CollationResolver {
    ICollationResolver^ get();
    void set(ICollationResolver^ value);
}
 

Remarks

This defines the collations that are available for use in processing queries and expressions.

A collation is a specification of the manner in which strings and URIs are compared and, by extension, ordered.

The resolver is used for all collations other than the codepoint collation (http://www.w3.org/2005/xpath-functions/collation/codepoint).

If this is set to null a null reference (Nothing in Visual Basic) nullptr then the codepoint collation is the only collation available to the query.

By default the CultureCollationResolverCultureCollationResolverCultureCollationResolver is used.