Creates a new match criterion

Namespace: BrightstarDB.Client
Assembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)

Syntax

C#
public PropertyMatchCriteria(
	IDataObject type,
	Object value,
	string langCode = null
)
Visual Basic
Public Sub New ( 
	type As IDataObject,
	value As Object,
	Optional langCode As String = Nothing
)
Visual C++
public:
PropertyMatchCriteria(
	IDataObject^ type, 
	Object^ value, 
	String^ langCode = nullptr
)
F#
new : 
        type : IDataObject * 
        value : Object * 
        ?langCode : string 
(* Defaults:
        let _langCode = defaultArg langCode null
*)
-> PropertyMatchCriteria

Parameters

type
Type: BrightstarDB.Client..::..IDataObject
The property type to match
value
Type: System..::..Object
The expected value
langCode (Optional)
Type: System..::..String
OPTIONAL: The expected language code

Remarks

To match another resource, pass a IDataObject instance for value, to match a literal, pass the literal value to match.

See Also