@@ -16,6 +16,33 @@ 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 partial class AuthorizeView : Microsoft . AspNetCore . Components . AuthorizeViewCore
20
+ {
21
+ public AuthorizeView ( ) { }
22
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
23
+ public string Policy { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
24
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
25
+ public string Roles { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
26
+ protected override Microsoft . AspNetCore . Authorization . IAuthorizeData [ ] GetAuthorizeData ( ) { throw null ; }
27
+ }
28
+ public abstract partial class AuthorizeViewCore : Microsoft . AspNetCore . Components . ComponentBase
29
+ {
30
+ protected AuthorizeViewCore ( ) { }
31
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
32
+ public Microsoft . AspNetCore . Components . RenderFragment < Microsoft . AspNetCore . Components . AuthenticationState > Authorized { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
33
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
34
+ public Microsoft . AspNetCore . Components . RenderFragment Authorizing { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
35
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
36
+ public Microsoft . AspNetCore . Components . RenderFragment < Microsoft . AspNetCore . Components . AuthenticationState > ChildContent { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
37
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
38
+ public Microsoft . AspNetCore . Components . RenderFragment < Microsoft . AspNetCore . Components . AuthenticationState > NotAuthorized { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
39
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
40
+ public object Resource { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
41
+ protected override void BuildRenderTree ( Microsoft . AspNetCore . Components . RenderTree . RenderTreeBuilder builder ) { }
42
+ protected abstract Microsoft . AspNetCore . Authorization . IAuthorizeData [ ] GetAuthorizeData ( ) ;
43
+ [ System . Diagnostics . DebuggerStepThroughAttribute ]
44
+ protected override System . Threading . Tasks . Task OnParametersSetAsync ( ) { throw null ; }
45
+ }
19
46
public static partial class BindConverter
20
47
{
21
48
public static bool FormatValue ( bool value , System . Globalization . CultureInfo culture = null ) { throw null ; }
@@ -63,12 +90,35 @@ public static partial class BindConverter
63
90
public static bool TryConvertToString ( object obj , System . Globalization . CultureInfo culture , out string value ) { throw null ; }
64
91
public static bool TryConvertTo < T > ( object obj , System . Globalization . CultureInfo culture , out T value ) { throw null ; }
65
92
}
93
+ public partial class CascadingAuthenticationState : Microsoft . AspNetCore . Components . ComponentBase , System . IDisposable
94
+ {
95
+ public CascadingAuthenticationState ( ) { }
96
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
97
+ public Microsoft . AspNetCore . Components . RenderFragment ChildContent { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
98
+ protected override void BuildRenderTree ( Microsoft . AspNetCore . Components . RenderTree . RenderTreeBuilder builder ) { }
99
+ protected override void OnInitialized ( ) { }
100
+ void System . IDisposable . Dispose ( ) { }
101
+ }
66
102
[ System . AttributeUsageAttribute ( System . AttributeTargets . Property , AllowMultiple = false , Inherited = true ) ]
67
103
public sealed partial class CascadingParameterAttribute : System . Attribute
68
104
{
69
105
public CascadingParameterAttribute ( ) { }
70
106
public string Name { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
71
107
}
108
+ public partial class CascadingValue < T > : Microsoft . AspNetCore . Components . IComponent
109
+ {
110
+ public CascadingValue ( ) { }
111
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
112
+ public Microsoft . AspNetCore . Components . RenderFragment ChildContent { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
113
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
114
+ public bool IsFixed { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
115
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
116
+ public string Name { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
117
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
118
+ public T Value { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
119
+ public void Attach ( Microsoft . AspNetCore . Components . RenderHandle renderHandle ) { }
120
+ public System . Threading . Tasks . Task SetParametersAsync ( Microsoft . AspNetCore . Components . ParameterCollection parameters ) { throw null ; }
121
+ }
72
122
public abstract partial class ComponentBase : Microsoft . AspNetCore . Components . IComponent , Microsoft . AspNetCore . Components . IHandleAfterRender , Microsoft . AspNetCore . Components . IHandleEvent
73
123
{
74
124
public ComponentBase ( ) { }
@@ -231,7 +281,7 @@ public abstract partial class LayoutComponentBase : Microsoft.AspNetCore.Compone
231
281
{
232
282
protected LayoutComponentBase ( ) { }
233
283
[ Microsoft . AspNetCore . Components . ParameterAttribute ]
234
- public Microsoft . AspNetCore . Components . RenderFragment Body { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
284
+ public Microsoft . AspNetCore . Components . RenderFragment Body { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
235
285
}
236
286
[ System . Runtime . InteropServices . StructLayoutAttribute ( System . Runtime . InteropServices . LayoutKind . Sequential ) ]
237
287
public readonly partial struct MarkupString
@@ -247,6 +297,20 @@ public partial class NavigationException : System.Exception
247
297
public NavigationException ( string uri ) { }
248
298
public string Location { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
249
299
}
300
+ public partial class PageDisplay : Microsoft . AspNetCore . Components . IComponent
301
+ {
302
+ public PageDisplay ( ) { }
303
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
304
+ public Microsoft . AspNetCore . Components . RenderFragment AuthorizingContent { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
305
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
306
+ public Microsoft . AspNetCore . Components . RenderFragment < Microsoft . AspNetCore . Components . AuthenticationState > NotAuthorizedContent { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
307
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
308
+ public System . Type Page { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
309
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
310
+ public System . Collections . Generic . IDictionary < string , object > PageParameters { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
311
+ public void Attach ( Microsoft . AspNetCore . Components . RenderHandle renderHandle ) { }
312
+ public System . Threading . Tasks . Task SetParametersAsync ( Microsoft . AspNetCore . Components . ParameterCollection parameters ) { throw null ; }
313
+ }
250
314
[ System . Runtime . InteropServices . StructLayoutAttribute ( System . Runtime . InteropServices . LayoutKind . Sequential ) ]
251
315
public readonly partial struct Parameter
252
316
{
@@ -587,4 +651,21 @@ public readonly partial struct LocationChangedEventArgs
587
651
public bool IsNavigationIntercepted { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
588
652
public string Location { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
589
653
}
654
+ public partial class Router : Microsoft . AspNetCore . Components . IComponent , Microsoft . AspNetCore . Components . IHandleAfterRender , System . IDisposable
655
+ {
656
+ public Router ( ) { }
657
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
658
+ public System . Reflection . Assembly AppAssembly { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
659
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
660
+ public Microsoft . AspNetCore . Components . RenderFragment AuthorizingContent { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
661
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
662
+ public Microsoft . AspNetCore . Components . RenderFragment < Microsoft . AspNetCore . Components . AuthenticationState > NotAuthorizedContent { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
663
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
664
+ public Microsoft . AspNetCore . Components . RenderFragment NotFoundContent { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
665
+ public void Attach ( Microsoft . AspNetCore . Components . RenderHandle renderHandle ) { }
666
+ public void Dispose ( ) { }
667
+ System . Threading . Tasks . Task Microsoft . AspNetCore . Components . IHandleAfterRender . OnAfterRenderAsync ( ) { throw null ; }
668
+ protected virtual void Render ( Microsoft . AspNetCore . Components . RenderTree . RenderTreeBuilder builder , System . Type handler , System . Collections . Generic . IDictionary < string , object > parameters ) { }
669
+ public System . Threading . Tasks . Task SetParametersAsync ( Microsoft . AspNetCore . Components . ParameterCollection parameters ) { throw null ; }
670
+ }
590
671
}
0 commit comments