Skip to content
This repository has been archived by the owner on May 1, 2024. It is now read-only.

[Bug] Location property no longer set via ShellNavigationState's Uri ctor #13422

Closed
RobertHolloway opened this issue Jan 15, 2021 · 0 comments · Fixed by #13478
Closed

[Bug] Location property no longer set via ShellNavigationState's Uri ctor #13422

RobertHolloway opened this issue Jan 15, 2021 · 0 comments · Fixed by #13478

Comments

@RobertHolloway
Copy link

Description

Constructing a ShellNavigationState instance from a Uri would set its Location property in Xamarin Forms v4.8 (via its internal FullLocation property). This no longer occurs in v5.0, so the value is null.

Steps to Reproduce

  1. Create a new Xamarin Forms (v5) Mobile App Shell project.
  2. In App's ctor, create two ShellNavigationState instances: one from a Uri and the other from its string value.
  3. Observe that Location is set for the second instance but not the first.
  4. Revert to Xamarin Forms v4.8 and observe that both Location values are correct.

Expected Behavior

Location should reflect the Uri given.

Actual Behavior

Location is null.

Basic Information

  • Version with issue: 5.0.0.1874
  • Last known good version: 4.8.0.1821
  • Platform Target Frameworks:
    • Android: 10.0
  • NuGet Packages: Defaults

Environment

Show/Hide Visual Studio info
Microsoft Visual Studio Community 2019
Version 16.8.4
VisualStudio.16.Release/16.8.4+30907.101
Microsoft .NET Framework
Version 4.8.04084

Installed Version: Community

Visual C++ 2019   00435-60000-00000-AA479
Microsoft Visual C++ 2019

ASP.NET and Web Tools 2019   16.8.557.25636
ASP.NET and Web Tools 2019

ASP.NET Core Razor Language Services   16.1.0.2052803+84e121f1403378489b842e1797df2f3f5a49ac3c
Provides languages services for ASP.NET Core Razor.

Automatic Versions   2.0.48
Provides tools for managing assembly versions.

Azure App Service Tools v3.0.0   16.8.557.25636
Azure App Service Tools v3.0.0

C# Tools   3.8.0-5.20604.10+9ed4b774d20940880de8df1ca8b07508aa01c8cd
C# components used in the IDE. Depending on your project type and settings, a different version of the compiler may be used.

Common Azure Tools   1.10
Provides common services for use by Azure Mobile Services and Microsoft Azure Tools.

Extensibility Message Bus   1.2.6 (master@34d6af2)
Provides common messaging-based MEF services for loosely coupled Visual Studio extension components communication and integration.

IntelliCode Extension   1.0
IntelliCode Visual Studio Extension Detailed Info

Microsoft Continuous Delivery Tools for Visual Studio   0.4
Simplifying the configuration of Azure DevOps pipelines from within the Visual Studio IDE.

Microsoft JVM Debugger   1.0
Provides support for connecting the Visual Studio debugger to JDWP compatible Java Virtual Machines

Microsoft Library Manager   2.1.113+g422d40002e.RR
Install client-side libraries easily to any web project

Microsoft MI-Based Debugger   1.0
Provides support for connecting Visual Studio to MI compatible debuggers

Microsoft Visual C++ Wizards   1.0
Microsoft Visual C++ Wizards

Microsoft Visual Studio Tools for Containers   1.1
Develop, run, validate your ASP.NET Core applications in the target environment. F5 your application directly into a container with debugging, or CTRL + F5 to edit & refresh your app without having to rebuild the container.

Microsoft Visual Studio VC Package   1.0
Microsoft Visual Studio VC Package

Mono Debugging for Visual Studio   16.8.43 (00471f8)
Support for debugging Mono processes with Visual Studio.

NuGet Package Manager   5.8.1
NuGet Package Manager in Visual Studio. For more information about NuGet, visit https://docs.nuget.org/

ProjectServicesPackage Extension   1.0
ProjectServicesPackage Visual Studio Extension Detailed Info

SQL Server Data Tools   16.0.62012.31170
Microsoft SQL Server Data Tools

TypeScript Tools   16.0.21016.2001
TypeScript Tools for Microsoft Visual Studio

Visual Basic Tools   3.8.0-5.20604.10+9ed4b774d20940880de8df1ca8b07508aa01c8cd
Visual Basic components used in the IDE. Depending on your project type and settings, a different version of the compiler may be used.

Visual F# Tools   16.8.0-beta.20507.4+da6be68280c89131cdba2045525b80890401defd
Microsoft Visual F# Tools

Visual Studio Code Debug Adapter Host Package   1.0
Interop layer for hosting Visual Studio Code debug adapters in Visual Studio

Visual Studio Container Tools Extensions   1.0
View, manage, and diagnose containers within Visual Studio.

Visual Studio Spell Check Everywhere   VSSpellCheckEverywhere
An extension that enables spell checking within any Visual Studio file editor or tool window that uses WPF text boxes.
https://GitHub.com/EWSoftware/VSSpellChecker

Visual Studio Spell Checker   VSSpellChecker
An editor extension that checks the spelling of comments, strings, and plain text as you type or interactively with tool windows.
https://GitHub.com/EWSoftware/VSSpellChecker

Visual Studio Tools for Containers   1.0
Visual Studio Tools for Containers

Visual Studio Tools for Unity   4.8.2.0
Visual Studio Tools for Unity

VisualStudio.DeviceLog   1.0
Information about my package

VisualStudio.Foo   1.0
Information about my package

VisualStudio.Mac   1.0
Mac Extension for Visual Studio

Xamarin   16.8.000.261 (d16-8@bb99248)
Visual Studio extension to enable development for Xamarin.iOS and Xamarin.Android.

Xamarin Designer   16.8.0.507 (remotes/origin/d16-8@e87b24884)
Visual Studio extension to enable Xamarin Designer tools in Visual Studio.

Xamarin Templates   16.8.112 (86385a3)
Templates for building iOS, Android, and Windows apps with Xamarin and Xamarin.Forms.

Xamarin.Android SDK   11.1.0.26 (d16-8/a36ce73)
Xamarin.Android Reference Assemblies and MSBuild support.
    Mono: 5e9cb6d
    Java.Interop: xamarin/java.interop/d16-8@79d9533
    ProGuard: Guardsquare/proguard/proguard6.2.2@ebe9000
    SQLite: xamarin/sqlite/3.32.1@1a3276b
    Xamarin.Android Tools: xamarin/xamarin-android-tools/d16-8@2fb1cbc


Xamarin.iOS and Xamarin.Mac SDK   14.8.0.3 (c51fabee8)
Xamarin.iOS and Xamarin.Mac Reference Assemblies and MSBuild support.

Build Logs

Screenshots

Reproduction Link

public App()
{
    InitializeComponent();

    MainPage = new MainPage();

    var uri = new Uri("//test", UriKind.Relative);
    var uriState = new ShellNavigationState(uri);
    var strState = new ShellNavigationState(uri.ToString());
    var uriLoc = uriState.Location;
    var strLoc = strState.Location;
}

Workaround

Pass the Uri's string version (i.e. ToString) into ShellNavigationState's ctor.

@RobertHolloway RobertHolloway added s/unverified New report that has yet to be verified t/bug 🐛 labels Jan 15, 2021
@samhouts samhouts added this to New in Triage Jan 15, 2021
@PureWeen PureWeen added this to To do in vNext+1 (5.0.0) via automation Jan 20, 2021
@PureWeen PureWeen added this to the 5.0.0 milestone Jan 20, 2021
@PureWeen PureWeen removed this from New in Triage Jan 20, 2021
@PureWeen PureWeen moved this from To do to In Progress in vNext+1 (5.0.0) Jan 21, 2021
@hartez hartez added this to Needs Review in 5.0.0 SR 3 Feb 2, 2021
@hartez hartez moved this from Needs Review to In Progress in 5.0.0 SR 3 Feb 2, 2021
@hartez hartez removed the s/unverified New report that has yet to be verified label Feb 2, 2021
@hartez hartez removed this from In Progress in vNext+1 (5.0.0) Feb 2, 2021
5.0.0 SR 3 automation moved this from Issue In Progress to Done Feb 5, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
No open projects
Development

Successfully merging a pull request may close this issue.

4 participants