File tree Expand file tree Collapse file tree 2 files changed +1
-7
lines changed
src/Components/Components/src Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -417,7 +417,6 @@ Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrameType.Region = 5 -> Mic
417
417
Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrameType.Text = 2 -> Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrameType
418
418
Microsoft.AspNetCore.Components.ResourceAsset
419
419
Microsoft.AspNetCore.Components.ResourceAsset.Properties.get -> System.Collections.Generic.IReadOnlyList<Microsoft.AspNetCore.Components.ResourceAssetProperty!>?
420
- Microsoft.AspNetCore.Components.ResourceAsset.ResourceAsset(string! url, System.Collections.Generic.IReadOnlyList<Microsoft.AspNetCore.Components.ResourceAssetProperty!>? properties) -> void
421
420
Microsoft.AspNetCore.Components.ResourceAsset.Url.get -> string!
422
421
Microsoft.AspNetCore.Components.ResourceAssetCollection
423
422
Microsoft.AspNetCore.Components.ResourceAssetCollection.IsContentSpecificUrl(string! path) -> bool
Original file line number Diff line number Diff line change @@ -12,13 +12,8 @@ namespace Microsoft.AspNetCore.Components;
12
12
/// <param name="url">The URL of the resource.</param>
13
13
/// <param name="properties">The properties associated to this resource.</param>
14
14
[ DebuggerDisplay ( $ "{{{nameof(GetDebuggerDisplay)}(),nq}}") ]
15
- public sealed class ResourceAsset ( string url , IReadOnlyList < ResourceAssetProperty > ? properties )
15
+ public sealed class ResourceAsset ( string url , IReadOnlyList < ResourceAssetProperty > ? properties = null )
16
16
{
17
- /// <summary>
18
- /// Initializes a new instance of <see cref="ResourceAsset"/>.
19
- /// </summary>
20
- /// <param name="url">The URL of the resource.</param>
21
- public ResourceAsset ( string url ) : this ( url , null ) { }
22
17
/// <summary>
23
18
/// Gets the URL that identifies this resource.
24
19
/// </summary>
You can’t perform that action at this time.
0 commit comments