Class SimpleSelector

Simple representation of a selector

Inheritance
System.Object
SimpleSelector
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: EPiServer.CssParsing
Assembly: EPiServer.Framework.dll
Version: 8.11.0
Syntax
public class SimpleSelector

Constructors

SimpleSelector()

Declaration
public SimpleSelector()

Properties

Attribute

Gets or sets the attribute.

Declaration
public AttributeToElement Attribute { get; set; }
Property Value
Type Description
AttributeToElement

The attribute.

Child

Declaration
public SimpleSelector Child { get; set; }
Property Value
Type Description
SimpleSelector

Class

Gets or sets the class.

Declaration
public string Class { get; set; }
Property Value
Type Description
System.String

The class.

Combinator

Gets or sets the combinator.

Declaration
public Combinator? Combinator { get; set; }
Property Value
Type Description
System.Nullable<Combinator>

The combinator.

ElementName

Gets or sets the name of the element.

Declaration
public string ElementName { get; set; }
Property Value
Type Description
System.String

The name of the element.

Function

Gets or sets the function.

Declaration
public CssFunction Function { get; set; }
Property Value
Type Description
CssFunction

The function.

Id

Gets or sets the id.

Declaration
public string Id { get; set; }
Property Value
Type Description
System.String

The id.

Pseudo

Gets or sets the pseudo.

Declaration
public string Pseudo { get; set; }
Property Value
Type Description
System.String

The pseudo.

Methods

ToString()

Returns a System.String that represents this instance.

Declaration
public override string ToString()
Returns
Type Description
System.String

A System.String that represents this instance.

Overrides
System.Object.ToString()