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 SourceNavigationResult(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. |
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 SourceContext
Gets the navigation context.
Declaration
public NavigationContext Context { get; }
Property Value
Type | Description |
---|---|
NavigationContext | The navigation context. |
Error
Gets an exception that occurred while navigating.
Declaration
public Exception Error { get; }
Property Value
Type | Description |
---|---|
System.Exception | The exception. |
Result
Gets the result.
Declaration
public bool? Result { get; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Boolean> | The result. |