Table of Contents

Class PageParameterValues

Namespace
Kentico.Xperience.Admin.Base
Assembly
Kentico.Xperience.Admin.Base.dll

Represents a collection of page parameter values.

public sealed class PageParameterValues
Inheritance
object
PageParameterValues
Extension Methods

Constructors

PageParameterValues()

Initializes a new instance of the PageParameterValues class.

public PageParameterValues()

Properties

this[Type]

Dictionary of page parameter values.

public object this[Type key] { get; set; }

Parameters

key Type

Property Value

object

Methods

Add(PageParameterValues)

Add page parameters to the dictionary.

public void Add(PageParameterValues pageParameterValues)

Parameters

pageParameterValues PageParameterValues

Add(Type, object)

Add page parameter to the dictionary.

public void Add(Type key, object value)

Parameters

key Type
value object

GetEnumerator()

Get enumerator of the dictionary data.

public IEnumerator<KeyValuePair<Type, object>> GetEnumerator()

Returns

IEnumerator<KeyValuePair<Type, object>>

TryGetValue(Type, out object)

Gets the value associated with the specified key.

public bool TryGetValue(Type key, out object value)

Parameters

key Type

The key whose value get.

value object

The value associated with the specified key, if the key is found.

Returns

bool

true if the dictionary contains an element with the specified key; otherwise, false.