Determines if a String is an ID or not.

Namespace:  FileNet.Api.Util
Assembly:  FileNet.Api (in FileNet.Api.dll)

ToggleSyntax

Visual Basic (Declaration)
Public Shared Function IsId ( _
	val As String _
) As Boolean
C#
public static bool IsId(
	string val
)
Visual C++
public:
static bool IsId(
	String^ val
)
JavaScript
FileNet.Api.Util.Id.isId = function(val);

Parameters

val
Type: System..::.String
The String to verify.

Return Value

True if the provided String is in GUID format; otherwise, returns False.

ToggleSee Also