Creates a new match criterion
            
Namespace: BrightstarDB.ClientAssembly: 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
See Also