Class JavaScriptDto
Data-transfer-object for javascript file registration.
Inheritance
System.Object
JavaScriptDto
Namespace: DotNetNuke.Services.Tokens
Assembly: DotNetNuke.dll
Syntax
public class JavaScriptDto : object
Properties
| Improve this Doc View SourceHtmlAttributes
Gets or sets the HTML attributes to include in the script tag.
Declaration
public IDictionary<string, string> HtmlAttributes { get; set; }
Property Value
Type | Description |
---|---|
IDictionary<System.String, System.String> |
JsName
Gets or sets the name of an installed javascript library.
Declaration
public string JsName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Path
Gets or sets the path to the javascript file.
Declaration
public string Path { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Priority
Gets or sets the priority of the javascript file.
Declaration
public int Priority { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Provider
Gets or sets the name of the provider to use. Examples: DnnPageHeaderProvider
, DnnBodyProvider
, DnnFormBottomProvider
.
Declaration
public string Provider { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Specific
Gets or sets the specific version to use. Examples: Latest
, LatestMajor
, LatestMinor
, Exact
c>.
Declaration
public string Specific { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Version
Gets or sets the version number to load.
Declaration
public string Version { get; set; }
Property Value
Type | Description |
---|---|
System.String |