Class PageParameterValues
Represents a collection of page parameter values.
public sealed class PageParameterValues
- Inheritance
-
objectPageParameterValues
- 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
Typevalue
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
TypeThe key whose value get.
value
objectThe 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
.