SaaS CMS has officially launched! Learn more now.

Class PlugInSummaryAttribute

Defines summary information about a plug-in assembly.

Inheritance
System.Object
PlugInSummaryAttribute
Namespace: EPiServer.PlugIn
Assembly: EPiServer.dll
Version: 12.0.3
Syntax
public sealed class PlugInSummaryAttribute : Attribute
Examples

The following sample adds an attribute to AssemblyInfo.cs to define summary information about a plug-in assembly.

[assembly: PlugInSummary(
MoreInfoUrl="<A href='http://www.episerver.com/'>http://www.episerver.com</A>" , License=LicensingMode.Freeware)]

Constructors

PlugInSummaryAttribute()

Initializes a new instance of the PlugInSummaryAttribute class.

Declaration
public PlugInSummaryAttribute()

PlugInSummaryAttribute(String, LicensingMode)

Initializes a new instance of the PlugInSummaryAttribute class.

Declaration
public PlugInSummaryAttribute(string moreInfourl, LicensingMode lic)
Parameters
Type Name Description
System.String moreInfourl

A URL that contains more information about the plug-in / assembly.

LicensingMode lic

The LicensingMode for all plug-ins in the assembly.

Properties

License

Gets or sets the licensing mode used by this assembly.

Declaration
public LicensingMode License { get; set; }
Property Value
Type Description
LicensingMode

The licensing mode.

MoreInfoUrl

Gets or sets the "more info" URL.

Declaration
public string MoreInfoUrl { get; set; }
Property Value
Type Description
System.String

The "more info" URL.

Remarks

This URL is displayed in the admin UI to allow an administrator to go to the plug-in vendors home page and get more information regarding the specific plug-in.

Extension Methods