A marker is a hidden tag that labels markup contents with a semantic class.

Namespace:  Gallio.Common.Markup
Assembly:  Gallio (in Gallio.dll) Version: 3.3.0.0 (3.3.459.0)

Syntax

C#
[SerializableAttribute]
public struct Marker : IEquatable<Marker>
Visual Basic (Declaration)
<SerializableAttribute> _
Public Structure Marker _
	Implements IEquatable(Of Marker)

Remarks

A marker is roughly equivalent in operation to an HTML "div" tag whose "class" attribute is used to annotate the contained block of tags and text. In HTML CSS selectors are used to apply presentation artifacts to the block; likewise tools may vary the presentation of markup based on associated marker classes.

This class provides several standard marker classes but you may also define your own at will just by creating a marker instance with a custom class name.

See Also