Show / Hide Table of Contents

Class UriMapper

Default UriMapperBase implementation that uses a List of UriMapping objects to map and transform URI values.

Inheritance
System.Object
UriMapperBase
UriMapper
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: System.Windows.Navigation
Assembly: OpenSilver.Controls.Navigation.dll
Syntax
public sealed class UriMapper : UriMapperBase

Constructors

| Improve this Doc View Source

UriMapper()

Default constructor.

Declaration
public UriMapper()

Properties

| Improve this Doc View Source

UriMappings

Gets a list of UriMapping objects.

Declaration
public Collection<UriMapping> UriMappings { get; }
Property Value
Type Description
System.Collections.ObjectModel.Collection<UriMapping>

Methods

| Improve this Doc View Source

MapUri(Uri)

Maps a given URI and returns a mapped URI.

Declaration
public override Uri MapUri(Uri uri)
Parameters
Type Name Description
System.Uri uri

Original URI value to be mapped to a new URI.

Returns
Type Description
System.Uri

A URI derived from the uri parameter.

Overrides
UriMapperBase.MapUri(Uri)
  • Improve this Doc
  • View Source