Class PlugInSummaryAttribute
Defines summary information about a plug-in assembly.
Inheritance
Namespace: EPiServer.PlugIn
Assembly: EPiServer.dll
Version: 12.0.3Syntax
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 Plug
Declaration
public PlugInSummaryAttribute()
PlugInSummaryAttribute(String, LicensingMode)
Initializes a new instance of the Plug
Declaration
public PlugInSummaryAttribute(string moreInfourl, LicensingMode lic)
Parameters
Type | Name | Description |
---|---|---|
System. |
moreInfourl | A URL that contains more information about the plug-in / assembly. |
Licensing |
lic | The Licensing |
Properties
License
Gets or sets the licensing mode used by this assembly.
Declaration
public LicensingMode License { get; set; }
Property Value
Type | Description |
---|---|
Licensing |
The licensing mode. |
MoreInfoUrl
Gets or sets the "more info" URL.
Declaration
public string MoreInfoUrl { get; set; }
Property Value
Type | Description |
---|---|
System. |
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.