
Espacio de nombres:
CodiumSDK.CPL.HTMLTagsEnsamblado: CodiumSDK.dll

Class that represent a “link” tag. The link tag defines the relationship between the current document and an external resource.
Métodos
Constructores
| Nombre | Descripción |
---|
 | Link() | Link |
 | Link(program, crossorigin, href, media, type, rel, sizes, style, className, id, title) | Constructor for link |
#GetAttribute(name)

Get Attribute
C# |
public CodiumSDK.CPL.HTMLAttribute GetAttribute(System.String name); |
Regresa
CodiumSDK.CPL.HTMLAttribute
Parámetros
Nombre | Tipo | Descripción |
---|
name | System.String | Name of the Atrribute |
#Link()

Link
#Link(program, crossorigin, href, media, type, rel, sizes, style, className, id, title)

Constructor for link
C# |
public Link(CodiumSDK.CPL.ProgramDefinition program, CodiumSDK.CPL.HTMLTags.Script.Crossorigin crossorigin, System.String href, System.String media, System.String type, CodiumSDK.CPL.HTMLTags.Link.Rel rel, System.String sizes, System.String style, System.String className, System.String id, System.String title); |
Parámetros
Nombre | Tipo | Descripción |
---|
program | CodiumSDK.CPL.ProgramDefinition | Program Definition |
crossorigin | CodiumSDK.CPL.HTMLTags.Script.Crossorigin | Specifies how the element handles cross-origin requests |
href | System.String | Specifies the location of the linked document |
media | System.String | Specifies on what device the linked document will be displayed |
type | System.String | Specifies the media type of the linked document |
rel | CodiumSDK.CPL.HTMLTags.Link.Rel | Required. Specifies the relationship between the current document and the linked document |
sizes | System.String | Specifies the size of the linked resource. Only for rel="icon" |
style | System.String | Specifies an inline CSS style for an element |
className | System.String | Specifies one or more classnames for an element (refers to a class in a style sheet) |
id | System.String | Specifies a unique id for an element |
title | System.String | Specifies extra information about an element |