New (RecordLockingConflict constructor): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
mNo edit summary
Line 1: Line 1:
{{Template:RecordLockingConflict:New subtitle}}
{{Template:RecordLockingConflict:New subtitle}}


This constructor generates an instance of an RecordLockingConflict exception.
Each argument to <var>New</var> sets the value of the corresponding property of the newly constructed <var>RecordLockingConflict</var> object.
As shown in the syntax that follows,
the New method arguments set the values of the class properties that have the
corresponding names.
==Syntax==
==Syntax==
{{Template:RecordLockingConflict:New syntax}}
{{Template:RecordLockingConflict:New syntax}}

Revision as of 02:26, 18 April 2011

Create a new RecordLockingConflict object (RecordLockingConflict class)

Each argument to New sets the value of the corresponding property of the newly constructed RecordLockingConflict object.

Syntax

%recordLockingConflict = [%(RecordLockingConflict):]New( Filename= string, - RecordNumber= number, - UserNumber= number, - UserID= string, - [LockingUserNumber= number], - [LockTimeMilliseconds= number], - [ConflictTimeMilliseconds= number], - [ConflictingLockStrength= lockStrength], - [ConflictingRecordLockType= recordLockType])

Syntax terms

%rlc A reference to an instance of a RecordLockingConflict object.
UserNumber=usernum This name required parameter specifies the numeric value (usernum) to be assigned to the exception object's UserNumber property. Its default value is 0.
UserID=userid This name required parameter specifies the longstring value (userid) to be assigned to the object's UserID property. Its default value is a null string.
Filename=fname This name required parameter specifies the longstring value (fname) to be assigned to the object's Filename property. Its default value is a null string.
RecordNumber=recnum This name required parameter specifies the numeric value (recnum) to be assigned to the object's RecordNumber property. Its default value is 0.

See also