This documentation is also published as Markdown for efficient machine reading: the whole site is indexed at /llms.txt, and every page has a clean Markdown copy under /_llms/. These are generated from the same source and cost far fewer tokens to read than this rendered HTML.

Skip to main content Skip to navigation

SocialLink Pennington.BlogSite

Icon and URL for a social media link.

Properties

Icon RenderFragment
Rendered icon markup.
Url string
Target URL.

Constructors

#
public SocialLink(RenderFragment Icon, string Url)

Icon and URL for a social media link.

Parameters

Icon RenderFragment
Rendered icon markup.
Url string
Target URL.

Pennington.BlogSite.SocialLink

namespace Pennington.BlogSite;

/// Icon and URL for a social media link.
public record SocialLink
{
    /// Rendered icon markup.
    
public RenderFragment Icon { get; set; }
/// Icon and URL for a social media link.
public SocialLink(RenderFragment Icon, string Url)
; /// Target URL.
public string Url { get; set; }
}