You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the Developer 13 training course in namespace XperienceAdapter.Models you call the class BasePage, but here in github it is called BasicPage
What went wrong?
compilation error
I followed the code and ran into issue around cancellationToken within GetContentTreeNavigationAsync method
Error CS1744 Named argument 'cancellationToken' specifies a parameter for which a positional argument has already been given
Business\Repositories\NavigationRepository.cs
The text was updated successfully, but these errors were encountered:
Thanks for reporting the typo. It happened when I ditched the dual-rail strategy with conventional ASP.NET routing being implemented alongside the CTB router. During that refactoring, I also renamed the BasePage CLR type to BasicPage, which I forgot to rename in the course for some reason.
It is fixed by now.
As for your compiler error, I'm not sure what the root cause might be on your end. There are two overloads of that method and the client code calls them without specifying the names of the parameters. The client code relies on positional order. Therefore I'm afraid I won't be able to determine the cause. If you gave me further details, I'll be happy to help.
Brief bug description
In the Developer 13 training course in namespace XperienceAdapter.Models you call the class BasePage, but here in github it is called BasicPage
What went wrong?
compilation error
I followed the code and ran into issue around cancellationToken within GetContentTreeNavigationAsync method
Error CS1744 Named argument 'cancellationToken' specifies a parameter for which a positional argument has already been given
Business\Repositories\NavigationRepository.cs
The text was updated successfully, but these errors were encountered: