BlogEngine.Core.Web.Controls.BlogBasePage.AddGenericLink C# (CSharp) Method

AddGenericLink() public method

Adds the generic link to the header.
public AddGenericLink ( string relation, string title, string href ) : void
relation string /// The relation string. ///
title string /// The title string. ///
href string /// The href string. ///
return void
        public virtual void AddGenericLink(string relation, string title, string href)
        {
            AddGenericLink(null, relation, title, href);
        }

Same methods

BlogBasePage::AddGenericLink ( string type, string relation, string title, string href ) : void