Table of Contents

Class QueryParameterViewModel

Namespace
Dynamicweb.QueryPublisher
Assembly
Dynamicweb.QueryPublisher.dll

Represents a ViewModelBase for query parameter information.

public sealed class QueryParameterViewModel : ViewModelBase
Inheritance
QueryParameterViewModel
Inherited Members

Properties

DefaultValue

Default value if none is set.

public string DefaultValue { get; set; }

Property Value

string

IsHandledAsFacet

Indicates whether the query parameter is being handled as a facet.

public bool IsHandledAsFacet { get; set; }

Property Value

bool

Name

Name of the query parameter.

public string Name { get; set; }

Property Value

string

TypeName

Type of the query parameter.

public string TypeName { get; set; }

Property Value

string

Value

The value given by the user.

public object Value { get; set; }

Property Value

object
To top