The list of types of
Asset
Namespace:
Ingeniux.CMS
Assembly:
Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.3.169
Syntax Public Enumeration AssetType
public enum class AssetType
Members
| Member name | Value | Description |
---|
| Binary | 0 |
Generic binary type with no extension or mime type associations, ultimate fallback type
|
| Code | 1 |
Generic source code type, fallback type for mime type starting with "application/" and ending with "script"
|
| Css | 2 |
Cascade stylesheet type, associated with mime type "text/css"
|
| Json | 3 |
Javascript Object Notation type, associated with mime type "application/json"
|
| Text | 4 |
Generic text code type, fallback type for mime type starting with "text/"
|
| Xml | 5 |
Extensible Markup Language type, associated with mime type "text/xml" and "application/xml"
|
| XsltStylesheet | 6 |
Extensible tylesheet Language Transformations type, associated with mime type "text" and extension
".xsl" or ".xslt", also associated with mime type "application/xslt"
|
| Document | 7 |
Generic document type, fallback type for mime type starting with "application" and contains "document"
or "pdf"
|
| Image | 8 |
Image type, associated with mime type starting with "image/"
|
| Audio | 9 |
Audio media type, associated with mime type starting with "audio/"
|
| Video | 10 |
Video media type, associated with mime type starting with "video/"
|
| View | 11 |
ASP.NET MVC view type, associated with extension ".cshtml" only, doesn't cover ".vbhtml".
This type is an important piece of CMS functionality on Dynamic Site Server rendering pipeline.
|
| Html | 12 |
Hypertext Markup Language type, associated with mime type "text/html"
|
| Js | 13 |
Javascript type, associated with mime type "application/javascript"
|
See Also