Interface ISearchField
Represents the field in the search engine. Used mostly for indexing purpose.
Namespace: Mediachase.Search
Assembly: Mediachase.Search.dll
Version: 14.26.0Syntax
public interface ISearchField
Properties
Attributes
Gets or sets the attributes.
Declaration
string[] Attributes { get; set; }
Property Value
Type | Description |
---|---|
System. |
The attributes. |
Name
Gets or sets the name.
Declaration
string Name { get; set; }
Property Value
Type | Description |
---|---|
System. |
The name. |
Value
Gets the value.
Declaration
object Value { get; }
Property Value
Type | Description |
---|---|
System. |
The value. |
Values
Gets or sets the values.
Declaration
object[] Values { get; set; }
Property Value
Type | Description |
---|---|
System. |
The values. |
Methods
AddValue(Object)
Adds the value.
Declaration
void AddValue(object value)
Parameters
Type | Name | Description |
---|---|---|
System. |
value | The value. |
ContainsAttribute(String)
Determines whether the specified value contains attribute.
Declaration
bool ContainsAttribute(string value)
Parameters
Type | Name | Description |
---|---|---|
System. |
value | The value. |
Returns
Type | Description |
---|---|
System. |
|
ContainsValue(String)
Determines whether the specified value contains value.
Declaration
bool ContainsValue(string value)
Parameters
Type | Name | Description |
---|---|---|
System. |
value | The value. |
Returns
Type | Description |
---|---|
System. |
|