StaticContextSettings.CollationResolver PropertyStaticContextSettings.CollationResolver PropertyStaticContextSettings::CollationResolver Property

Gets or sets the resolver for collation URIs .

Syntax

Public Property CollationResolver As CollationResolver
        Get
        Set(ByVal value As CollationResolver)
public CollationResolver CollationResolver { get; set; }
public:
property CollationResolver^ CollationResolver {
    CollationResolver^ get();
    void set(CollationResolver^ 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.