Show / Hide Table of Contents

Class NavigationResult

Represents the result of navigating to a URI.

Inheritance
System.Object
NavigationResult
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: 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.

System.Exception error

The error.

View Source

NavigationResult(NavigationContext, Nullable<Boolean>)

Initializes a new instance of the NavigationResult class.

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

The context.

System.Nullable<System.Boolean> 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
System.Exception

The exception.

View Source

Result

Gets the result.

Declaration
public bool? Result { get; }
Property Value
Type Description
System.Nullable<System.Boolean>

The result.

Extension Methods

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