SearchCondition.Values Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets values the values to search for in the searchable property.
public:
property cli::array <System::String ^> ^ Values { cli::array <System::String ^> ^ get(); void set(cli::array <System::String ^> ^ value); };
[System.Xml.Serialization.XmlArrayItem("Value")]
public string[] Values { get; set; }
[<System.Xml.Serialization.XmlArrayItem("Value")>]
member this.Values : string[] with get, set
Public Property Values As String()
Property Value
String[]
A string
array that represent the values to search for in the searchable property.
- Attributes
Remarks
The size of the array the string format depend on the value of Condition:
If Condition is set to Equals or Contains, the array must contain a single string.
If Condition is set to Between, the array must contain two strings in date and time format.
If Condition is set to In, the array can contain one or more strings.