SaaS CMS has officially launched! Learn more now.

Class SearchProviderSetting

Object stored in the database with information about a search provider.

Inheritance
System.Object
SearchProviderSetting
Inherited Members
System.Object.ToString()
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.Shell.Search
Assembly: EPiServer.Shell.dll
Version: 7.19.2
Syntax
public class SearchProviderSetting

Constructors

SearchProviderSetting()

Initializes a new instance of the SearchProviderSetting class.

Declaration
public SearchProviderSetting()

SearchProviderSetting(String, Int32, Boolean)

Initializes a new instance of the SearchProviderSetting class.

Declaration
public SearchProviderSetting(string providerTypeName, int sortIndex, bool isEnabled)
Parameters
Type Name Description
System.String providerTypeName

Name of the provider type.

System.Int32 sortIndex

Index of the sort.

System.Boolean isEnabled

if set to true [is enabled].

Properties

FullName

Gets or sets the full type name of the search provider.

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

IsEnabled

Gets or sets whether the search provider is enabled.

Declaration
public bool IsEnabled { get; set; }
Property Value
Type Description
System.Boolean

SortIndex

Gets or sets the sort index of this search provider.

Declaration
public int SortIndex { get; set; }
Property Value
Type Description
System.Int32

Extension Methods