MatchType Enumeração

Definição

A enumeração MatchType especifica o tipo de comparação usado em uma pesquisa.The MatchType enumeration specifies the type of comparison used in a search.

public enum class MatchType
public enum MatchType
type MatchType = 
Public Enum MatchType
Herança
MatchType

Campos

Equals 0

Os resultados da pesquisa incluem valores iguais ao valor fornecido.The search results include values that equal the supplied value. Se o valor fornecido especificar uma data e hora, a coleção retornada incluirá objetos que têm a mesma data e hora.If the supplied value specifies a date and time, the returned collection includes objects that have the same date and time.

GreaterThan 2

Os resultados da pesquisa incluem valores maiores que o valor fornecido.The search results include values that are greater than the supplied value. Se o valor fornecido especificar uma data e hora, a coleção retornada incluirá objetos com data após a data e hora especificadas.If the supplied value specifies a date and time, the returned collection includes objects that are dated after the specified date and time.

GreaterThanOrEquals 3

Os resultados da pesquisa incluem valores maiores ou iguais ao valor fornecido.The search results include values that are greater than or equal to the supplied value. Se o valor fornecido especificar uma data e hora, a coleção retornada incluirá objetos com a data da data e hora especificadas ou após elas.If the supplied value specifies a date and time, the returned collection includes objects that are dated on or after the specified date and time.

LessThan 4

Os resultados da pesquisa incluem valores menores que o valor fornecido.The search results include values that are less than the supplied value. Se o valor fornecido especificar uma data e hora, a coleção retornada incluirá objetos com data anterior à data e hora especificadas.If the supplied value specifies a date and time, the returned collection includes objects that are dated prior to the specified date and time.

LessThanOrEquals 5

Os resultados da pesquisa incluem valores menores ou iguais ao valor fornecido.The search results include values that are less than or equal to the supplied value. Se o valor fornecido especificar uma data e hora, a coleção retornada incluirá objetos com a data na data e hora especificadas ou anterior a elas.If the supplied value specifies a date and time, the returned collection includes objects that are dated prior to or on the specified date and time.

NotEquals 1

Os resultados da pesquisa incluem valores diferentes do valor fornecido.The search results include values that are not equal to the supplied value. Se o valor fornecido especificar uma data e hora, a coleção retornada incluirá objetos que não incluem a data e hora especificadas.If the supplied value specifies a date and time, the returned collection includes objects that do not include the specified date and time.

Aplica-se a