Table of Contents

Class FieldTypeDefinition

Namespace
Dynamicweb.Indexing.Schemas
Assembly
Dynamicweb.Indexing.dll
Represents definition of field type
public class FieldTypeDefinition
Inheritance
FieldTypeDefinition
Inherited Members

Properties

Analyzers

Key - provider, Value - Type Of Analyzer
[JsonConverter(typeof(DictionaryJsonConverter))]
public IDictionary<string, string> Analyzers { get; set; }

Property Value

IDictionary<string, string>

Boost

public string Boost { get; set; }

Property Value

string

Name

FieldTypeDefinition name
public string Name { get; set; }

Property Value

string

Type

Type of field type definition
[Obsolete("Use TypeName instead.")]
public string Type { get; set; }

Property Value

string

TypeName

Type of field type definition
public string TypeName { get; set; }

Property Value

string

Methods

GetAnalyzer(string)

Gets analyzer using ProviderType name value
public string GetAnalyzer(string providerTypeName)

Parameters

providerTypeName string
Provider type name

Returns

string
Analyzer
To top