Skip to content

Commit 2bb4f08

Browse files
authored
changed namespace for RootComponentMetadata and ComponentTypeMetadata (#48256)
1 parent 4793dfe commit 2bb4f08

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

src/Components/Endpoints/src/Builder/ComponentTypeMetadata.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Licensed to the .NET Foundation under one or more agreements.
22
// The .NET Foundation licenses this file to you under the MIT license.
33

4-
namespace Microsoft.AspNetCore.Builder;
4+
namespace Microsoft.AspNetCore.Components.Endpoints;
55

66
/// <summary>
77
/// Metadata that represents the component associated with an endpoint.

src/Components/Endpoints/src/Builder/RootComponentMetadata.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Licensed to the .NET Foundation under one or more agreements.
22
// The .NET Foundation licenses this file to you under the MIT license.
33

4-
namespace Microsoft.AspNetCore.Builder;
4+
namespace Microsoft.AspNetCore.Components.Endpoints;
55

66
/// <summary>
77
/// Metadata that represents the root component associated with an endpoint.

src/Components/Endpoints/src/PublicAPI.Unshipped.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
1-
Microsoft.AspNetCore.Builder.ComponentTypeMetadata
2-
Microsoft.AspNetCore.Builder.ComponentTypeMetadata.ComponentTypeMetadata(System.Type! componentType) -> void
3-
Microsoft.AspNetCore.Builder.ComponentTypeMetadata.Type.get -> System.Type!
41
Microsoft.AspNetCore.Builder.RazorComponentEndpointConventionBuilder
52
Microsoft.AspNetCore.Builder.RazorComponentEndpointConventionBuilder.Add(System.Action<Microsoft.AspNetCore.Builder.EndpointBuilder!>! convention) -> void
63
Microsoft.AspNetCore.Builder.RazorComponentEndpointConventionBuilder.Finally(System.Action<Microsoft.AspNetCore.Builder.EndpointBuilder!>! finallyConvention) -> void
74
Microsoft.AspNetCore.Builder.RazorComponentsEndpointRouteBuilderExtensions
8-
Microsoft.AspNetCore.Builder.RootComponentMetadata
9-
Microsoft.AspNetCore.Builder.RootComponentMetadata.RootComponentMetadata(System.Type! rootComponentType) -> void
10-
Microsoft.AspNetCore.Builder.RootComponentMetadata.Type.get -> System.Type!
115
Microsoft.AspNetCore.Components.ComponentApplicationBuilder
126
Microsoft.AspNetCore.Components.ComponentApplicationBuilder.Build() -> Microsoft.AspNetCore.Components.RazorComponentApplication!
137
Microsoft.AspNetCore.Components.ComponentApplicationBuilder.ComponentApplicationBuilder() -> void
8+
Microsoft.AspNetCore.Components.Endpoints.ComponentTypeMetadata
9+
Microsoft.AspNetCore.Components.Endpoints.ComponentTypeMetadata.ComponentTypeMetadata(System.Type! componentType) -> void
10+
Microsoft.AspNetCore.Components.Endpoints.ComponentTypeMetadata.Type.get -> System.Type!
1411
Microsoft.AspNetCore.Components.Endpoints.IComponentPrerenderer
1512
Microsoft.AspNetCore.Components.Endpoints.IComponentPrerenderer.Dispatcher.get -> Microsoft.AspNetCore.Components.Dispatcher!
1613
Microsoft.AspNetCore.Components.Endpoints.IComponentPrerenderer.PrerenderComponentAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext, System.Type! componentType, Microsoft.AspNetCore.Components.RenderMode renderMode, Microsoft.AspNetCore.Components.ParameterView parameters) -> System.Threading.Tasks.ValueTask<Microsoft.AspNetCore.Html.IHtmlAsyncContent!>
@@ -38,6 +35,9 @@ Microsoft.AspNetCore.Components.Endpoints.RazorComponentResult<TComponent>.Razor
3835
Microsoft.AspNetCore.Components.Endpoints.RazorComponentResult<TComponent>.RazorComponentResult(System.Collections.Generic.IReadOnlyDictionary<string!, object?>! parameters) -> void
3936
Microsoft.AspNetCore.Components.Endpoints.RazorComponentResultExecutor
4037
Microsoft.AspNetCore.Components.Endpoints.RazorComponentResultExecutor.RazorComponentResultExecutor() -> void
38+
Microsoft.AspNetCore.Components.Endpoints.RootComponentMetadata
39+
Microsoft.AspNetCore.Components.Endpoints.RootComponentMetadata.RootComponentMetadata(System.Type! rootComponentType) -> void
40+
Microsoft.AspNetCore.Components.Endpoints.RootComponentMetadata.Type.get -> System.Type!
4141
Microsoft.AspNetCore.Components.IRazorComponentApplication<TComponent>
4242
Microsoft.AspNetCore.Components.IRazorComponentApplication<TComponent>.GetBuilder() -> Microsoft.AspNetCore.Components.ComponentApplicationBuilder!
4343
Microsoft.AspNetCore.Components.PageDefinition

0 commit comments

Comments
 (0)