XPathQuery Constructor (String, ComparisonOperator, Object, Boolean, AttributeType, Boolean) |
Initializes a new instance of the XPathQuery class
Namespace:
Lithnet.ResourceManagement.Client
Assembly:
Lithnet.ResourceManagement.Client (in Lithnet.ResourceManagement.Client.dll) Version: 1.0.6435.24467
Syntaxpublic XPathQuery(
string attributeName,
ComparisonOperator comparisonOperator,
Object value,
bool negate,
AttributeType attributeType,
bool isMultivalued
)
Public Sub New (
attributeName As String,
comparisonOperator As ComparisonOperator,
value As Object,
negate As Boolean,
attributeType As AttributeType,
isMultivalued As Boolean
)
public:
XPathQuery(
String^ attributeName,
ComparisonOperator comparisonOperator,
Object^ value,
bool negate,
AttributeType attributeType,
bool isMultivalued
)
Parameters
- attributeName
- Type: SystemString
The name of the attribute to compare against - comparisonOperator
- Type: Lithnet.ResourceManagement.ClientComparisonOperator
The value comparison operator to use - value
- Type: SystemObject
The value to compare against - negate
- Type: SystemBoolean
Indicates if this query should be negated with the not() operator - attributeType
- Type: Lithnet.ResourceManagement.ClientAttributeType
The data type of the attribute being queried - isMultivalued
- Type: SystemBoolean
The multivalued status of the attribute being queried
Remarks
This constructor can be used when a connection to the resource management service not available. The attribute type and multivalued status are not validated against the schema
See Also