Show / Hide Table of Contents

Class NavigationResult

Represents the result of navigating to a URI.

Inheritance
object
NavigationResult
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Sartorius.SAF.Presentation.Regions
Assembly: Sartorius.SAF.Presentation.dll
Syntax
public class NavigationResult

Constructors

View Source

NavigationResult(NavigationContext, Exception)

Initializes a new instance of the NavigationResult class.

Declaration
public NavigationResult(NavigationContext context, Exception error)
Parameters
Type Name Description
NavigationContext context

The context.

Exception error

The error.

View Source

NavigationResult(NavigationContext, bool?)

Initializes a new instance of the NavigationResult class.

Declaration
public NavigationResult(NavigationContext context, bool? result)
Parameters
Type Name Description
NavigationContext context

The context.

bool? result

The result.

Properties

View Source

Context

Gets the navigation context.

Declaration
public NavigationContext Context { get; }
Property Value
Type Description
NavigationContext

The navigation context.

View Source

Error

Gets an exception that occurred while navigating.

Declaration
public Exception Error { get; }
Property Value
Type Description
Exception

The exception.

View Source

Result

Gets the result.

Declaration
public bool? Result { get; }
Property Value
Type Description
bool?

The result.

Extension Methods

CollectionExtensions.AddRange<T, TCollection>(TCollection, IEnumerable<T>)
SerializableObjectCloneExtension.Clone<T>(T)
  • View Source
Back to top Generated by DocFX