Class SearchFilter.IsLessThanOrEqualTo
- Namespace
- Microsoft.Exchange.WebServices.Data
- Assembly
- Microsoft.Exchange.WebServices.dll
Represents a search filter that checks if a property is less than or equal to a given value or other property.
public sealed class SearchFilter.IsLessThanOrEqualTo : SearchFilter.RelationalFilter
- Inheritance
-
SearchFilter.IsLessThanOrEqualTo
- Inherited Members
Constructors
IsLessThanOrEqualTo()
Initializes a new instance of the SearchFilter.IsLessThanOrEqualTo class.
public IsLessThanOrEqualTo()
IsLessThanOrEqualTo(PropertyDefinitionBase, PropertyDefinitionBase)
Initializes a new instance of the SearchFilter.IsLessThanOrEqualTo class.
public IsLessThanOrEqualTo(PropertyDefinitionBase propertyDefinition, PropertyDefinitionBase otherPropertyDefinition)
Parameters
propertyDefinition
PropertyDefinitionBaseThe definition of the property that is being compared. Property definitions are available as static members from schema classes (for example, EmailMessageSchema.Subject, AppointmentSchema.Start, ContactSchema.GivenName, etc.)
otherPropertyDefinition
PropertyDefinitionBaseThe definition of the property to compare with. Property definitions are available on schema classes (EmailMessageSchema, AppointmentSchema, etc.)
IsLessThanOrEqualTo(PropertyDefinitionBase, object)
Initializes a new instance of the SearchFilter.IsLessThanOrEqualTo class.
public IsLessThanOrEqualTo(PropertyDefinitionBase propertyDefinition, object value)
Parameters
propertyDefinition
PropertyDefinitionBaseThe definition of the property that is being compared. Property definitions are available as static members from schema classes (for example, EmailMessageSchema.Subject, AppointmentSchema.Start, ContactSchema.GivenName, etc.)
value
objectThe value to compare the property with.