Table of Contents

Class CPDocBaseClass.HtmlAssetClass

Namespace
Contensive.BaseClasses
Assembly
CPBase.dll

assets to be added to the head section (and end-of-body) of html documents

public class CPDocBaseClass.HtmlAssetClass
Inheritance
CPDocBaseClass.HtmlAssetClass
Inherited Members

Properties

addedByMessage

message used during debug to show where the asset came from

public string addedByMessage { get; set; }

Property Value

string

assetType

the type of asset, css, js, etc

public CPDocBaseClass.HtmlAssetTypeEnum assetType { get; set; }

Property Value

CPDocBaseClass.HtmlAssetTypeEnum

canBeMerged

If true, this asset can can be merged with other similar documents

public bool canBeMerged { get; set; }

Property Value

bool

content

either link or content depending on the isLink property

public string content { get; set; }

Property Value

string

inHead

if true, asset goes in head else it goes at end of body

public bool inHead { get; set; }

Property Value

bool

if true, the content property is a link to the asset, else use the content as the asset

public bool isLink { get; set; }

Property Value

bool

sourceAddonId

if this asset was added from an addon, this is the addonId.

public int sourceAddonId { get; set; }

Property Value

int