DOFBlobType Constructor (Int32, Int32)OpenDOF Object Access Library
Construct a type that requires a variable-length blob with length between minLength and maxLength.

Namespace: org.opendof.core.oal.value
Assembly: dof-oal (in dof-oal.dll) Version: 7.0.1.2
Syntax

C#
public Type(
	int minLength,
	int maxLength
)

Parameters

minLength
Type: SystemInt32
The required minimum length of the blob. Must not be negative.
maxLength
Type: SystemInt32
The required maximum length of the blob. Must be greater than or equal to minLength.
Remarks

Construct a type that requires a variable-length blob with length between minLength and maxLength. If the parameters are equal then this is identical to calling the single-argument constructor.
See Also

Reference