Determines whether there are no other documents with the specified property value.

Namespace: BlueCieloECM.InnoCielo.Meridian.Server
Assembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 1.4.0.0 (1.4.40.0)

Syntax

C#
public bool IsUniqueValue(
	string propertyDefFullName,
	Object value,
	BCDocument documentToExclude
)
Visual Basic
Public Function IsUniqueValue ( _
	propertyDefFullName As String, _
	value As Object, _
	documentToExclude As BCDocument _
) As Boolean
Visual C++
public:
bool IsUniqueValue(
	String^ propertyDefFullName, 
	Object^ value, 
	BCDocument^ documentToExclude
)

Parameters

propertyDefFullName
Type: System..::..String
The property definition FullName property value that describes the property to check.
value
Type: System..::..Object
The value of the property to check.
documentToExclude
Type: BlueCieloECM.InnoCielo.Meridian.Server..::..BCDocument
The document which property values will be excluded from the inspection.

Return Value

A value indicating whether there are no other documents with the specified property value.

See Also