Returns various document information in a single call.

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 void GetDocumentInfo(
	DocumentInfoFlags mode,
	out DocumentInfoFlags flags,
	out DateTime modifiedDate,
	out string lockID,
	out string path
)
Visual Basic
Public Sub GetDocumentInfo ( _
	mode As DocumentInfoFlags, _
	<OutAttribute> ByRef flags As DocumentInfoFlags, _
	<OutAttribute> ByRef modifiedDate As DateTime, _
	<OutAttribute> ByRef lockID As String, _
	<OutAttribute> ByRef path As String _
)
Visual C++
public:
void GetDocumentInfo(
	DocumentInfoFlags mode, 
	[OutAttribute] DocumentInfoFlags% flags, 
	[OutAttribute] DateTime% modifiedDate, 
	[OutAttribute] String^% lockID, 
	[OutAttribute] String^% path
)

Parameters

mode
Type: BlueCieloECM.InnoCielo.Meridian.Server..::..DocumentInfoFlags
A bitmask that is a combination of bit flags from DocumentInfoFlags.
flags
Type: BlueCieloECM.InnoCielo.Meridian.Server..::..DocumentInfoFlags%
Returns a bitmask that is a combination of bit flags from DocumentInfoFlags.
modifiedDate
Type: System..::..DateTime%
Returns the date when the document was last edited.
lockID
Type: System..::..String%
Returns the LockID value of the document (or an empty string if there is no lock).
path
Type: System..::..String%
Returns the relative path of the document.

See Also