Class SearchRestrictionInfoWS
Carrier object representing search restriction, used for advanced search
Inherited Members
Namespace: SuperOffice.ErpSync
Assembly: SuperOffice.Plugins.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/EIS/Connector/1.0")]
public class SearchRestrictionInfoWS
Constructors
SearchRestrictionInfoWS()
Carrier object representing search restriction, used for advanced search
Declaration
public SearchRestrictionInfoWS()
Properties
FieldKey
Field key, corresponding to a previously-returned FieldKey in a FieldMetadataInfo structure; uniquely identifies the field to search for
Declaration
[DataMember]
public string FieldKey { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Operator
Operator to be applied in this search. Operators are: =, !=, >, < between and IN for all data types; in addition, strings should support begins and contains with % as the wildcard placeholder
Declaration
[DataMember]
public string Operator { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
ScalarValue
Simplified get/set property for the one-and-only element of the Values array, for operators that take only one value.
Declaration
[DataMember]
public string ScalarValue { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Values
Array of values to apply in search. Most operators take just one value, and the ScalarValue derived property can be used to get/set the value
Declaration
[DataMember]
public string[] Values { get; set; }
Property Value
| Type | Description |
|---|---|
| string[] |
Methods
ToString()
ToString override. Returns a formatted representation of a SearchRestrictionInfo
Declaration
public override string ToString()
Returns
| Type | Description |
|---|---|
| string |