AdvantageCMS.Core.Common.BaseClasses Namespace
Build With Advantage

BusinessObjectSiteSetting<(Of <(<'T>)>)>..::..SocialShares Property

Gets or sets the social shares.

Namespace:  AdvantageCMS.Core.Admin.BaseClasses
Assembly:  AdvantageCMS.Core (in AdvantageCMS.Core.dll)

Syntax


[BrowsableAttribute]
[EditorBrowsableAttribute]
public virtual List<AdvantageSocialShare> SocialShares { get; set; }

Field Value

The social shares.

Examples


Configure the social sharing options available across the domain.
C#
var settings = new MySiteSettings();
settings.SocialShares.Add(new AdvantageSocialShare
{
    Name = "Twitter",
    Enabled = true
});