Removes any property on this data object with the specified type and value

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

Syntax

C#
IDataObject RemoveProperty(
	string type,
	Object value,
	string lang = null
)
Visual Basic
Function RemoveProperty ( 
	type As String,
	value As Object,
	Optional lang As String = Nothing
) As IDataObject
Visual C++
IDataObject^ RemoveProperty(
	String^ type, 
	Object^ value, 
	String^ lang = nullptr
)
F#
abstract RemoveProperty : 
        type : string * 
        value : Object * 
        ?lang : string 
(* Defaults:
        let _lang = defaultArg lang null
*)
-> IDataObject 

Parameters

type
Type: System..::..String
The type of the property to be removed as a URI or CURIE
value
Type: System..::..Object
The value of the property to be removed
lang (Optional)
Type: System..::..String
OPTIONAL: The language code of the property to be removed. This parameter is ignored if value is an IDataObject

Return Value

Type: IDataObject
This IDataObject to allow chained calls

Remarks

If this object has no matching property, then this call is a no-op

See Also