@@ -16,6 +16,15 @@ public event Microsoft.AspNetCore.Components.AuthenticationStateChangedHandler A
16
16
public abstract System . Threading . Tasks . Task < Microsoft . AspNetCore . Components . AuthenticationState > GetAuthenticationStateAsync ( ) ;
17
17
protected void NotifyAuthenticationStateChanged ( System . Threading . Tasks . Task < Microsoft . AspNetCore . Components . AuthenticationState > task ) { }
18
18
}
19
+ public sealed partial class AuthorizeRouteView : Microsoft . AspNetCore . Components . RouteView
20
+ {
21
+ public AuthorizeRouteView ( ) { }
22
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
23
+ public Microsoft . AspNetCore . Components . RenderFragment Authorizing { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
24
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
25
+ public Microsoft . AspNetCore . Components . RenderFragment < Microsoft . AspNetCore . Components . AuthenticationState > NotAuthorized { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
26
+ protected override void Render ( Microsoft . AspNetCore . Components . RenderTree . RenderTreeBuilder builder ) { }
27
+ }
19
28
public partial class AuthorizeView : Microsoft . AspNetCore . Components . AuthorizeViewCore
20
29
{
21
30
public AuthorizeView ( ) { }
@@ -278,6 +287,16 @@ protected LayoutComponentBase() { }
278
287
[ Microsoft . AspNetCore . Components . ParameterAttribute ]
279
288
public Microsoft . AspNetCore . Components . RenderFragment Body { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
280
289
}
290
+ public partial class LayoutView : Microsoft . AspNetCore . Components . IComponent
291
+ {
292
+ public LayoutView ( ) { }
293
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
294
+ public Microsoft . AspNetCore . Components . RenderFragment ChildContent { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
295
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
296
+ public System . Type Layout { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
297
+ public void Attach ( Microsoft . AspNetCore . Components . RenderHandle renderHandle ) { }
298
+ public System . Threading . Tasks . Task SetParametersAsync ( Microsoft . AspNetCore . Components . ParameterView parameters ) { throw null ; }
299
+ }
281
300
public sealed partial class LocationChangeException : System . Exception
282
301
{
283
302
public LocationChangeException ( string message , System . Exception innerException ) { }
@@ -323,20 +342,6 @@ public abstract partial class OwningComponentBase<TService> : Microsoft.AspNetCo
323
342
protected OwningComponentBase ( ) { }
324
343
protected TService Service { get { throw null ; } }
325
344
}
326
- public partial class PageDisplay : Microsoft . AspNetCore . Components . IComponent
327
- {
328
- public PageDisplay ( ) { }
329
- [ Microsoft . AspNetCore . Components . ParameterAttribute ]
330
- public Microsoft . AspNetCore . Components . RenderFragment Authorizing { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
331
- [ Microsoft . AspNetCore . Components . ParameterAttribute ]
332
- public Microsoft . AspNetCore . Components . RenderFragment < Microsoft . AspNetCore . Components . AuthenticationState > NotAuthorized { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
333
- [ Microsoft . AspNetCore . Components . ParameterAttribute ]
334
- public System . Type Page { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
335
- [ Microsoft . AspNetCore . Components . ParameterAttribute ]
336
- public System . Collections . Generic . IDictionary < string , object > PageParameters { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
337
- public void Attach ( Microsoft . AspNetCore . Components . RenderHandle renderHandle ) { }
338
- public System . Threading . Tasks . Task SetParametersAsync ( Microsoft . AspNetCore . Components . ParameterView parameters ) { throw null ; }
339
- }
340
345
[ System . AttributeUsageAttribute ( System . AttributeTargets . Property , AllowMultiple = false , Inherited = true ) ]
341
346
public sealed partial class ParameterAttribute : System . Attribute
342
347
{
@@ -391,6 +396,23 @@ public sealed partial class RouteAttribute : System.Attribute
391
396
public RouteAttribute ( string template ) { }
392
397
public string Template { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
393
398
}
399
+ public sealed partial class RouteData
400
+ {
401
+ public RouteData ( System . Type pageType , System . Collections . Generic . IReadOnlyDictionary < string , object > routeValues ) { }
402
+ public System . Type PageType { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
403
+ public System . Collections . Generic . IReadOnlyDictionary < string , object > RouteValues { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
404
+ }
405
+ public partial class RouteView : Microsoft . AspNetCore . Components . IComponent
406
+ {
407
+ public RouteView ( ) { }
408
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
409
+ public System . Type DefaultLayout { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
410
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
411
+ public Microsoft . AspNetCore . Components . RouteData RouteData { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
412
+ public void Attach ( Microsoft . AspNetCore . Components . RenderHandle renderHandle ) { }
413
+ protected virtual void Render ( Microsoft . AspNetCore . Components . RenderTree . RenderTreeBuilder builder ) { }
414
+ public System . Threading . Tasks . Task SetParametersAsync ( Microsoft . AspNetCore . Components . ParameterView parameters ) { throw null ; }
415
+ }
394
416
}
395
417
namespace Microsoft . AspNetCore . Components . CompilerServices
396
418
{
@@ -648,15 +670,12 @@ public Router() { }
648
670
[ Microsoft . AspNetCore . Components . ParameterAttribute ]
649
671
public System . Reflection . Assembly AppAssembly { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
650
672
[ Microsoft . AspNetCore . Components . ParameterAttribute ]
651
- public Microsoft . AspNetCore . Components . RenderFragment Authorizing { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
652
- [ Microsoft . AspNetCore . Components . ParameterAttribute ]
653
- public Microsoft . AspNetCore . Components . RenderFragment < Microsoft . AspNetCore . Components . AuthenticationState > NotAuthorized { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
673
+ public Microsoft . AspNetCore . Components . RenderFragment < Microsoft . AspNetCore . Components . RouteData > Found { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
654
674
[ Microsoft . AspNetCore . Components . ParameterAttribute ]
655
675
public Microsoft . AspNetCore . Components . RenderFragment NotFound { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
656
676
public void Attach ( Microsoft . AspNetCore . Components . RenderHandle renderHandle ) { }
657
677
public void Dispose ( ) { }
658
678
System . Threading . Tasks . Task Microsoft . AspNetCore . Components . IHandleAfterRender . OnAfterRenderAsync ( ) { throw null ; }
659
- protected virtual void Render ( Microsoft . AspNetCore . Components . RenderTree . RenderTreeBuilder builder , System . Type handler , System . Collections . Generic . IDictionary < string , object > parameters ) { }
660
679
public System . Threading . Tasks . Task SetParametersAsync ( Microsoft . AspNetCore . Components . ParameterView parameters ) { throw null ; }
661
680
}
662
681
}
0 commit comments