Determines if a String is an ID or not.


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

Syntax

Visual Basic (Declaration)
Public Shared Function IsId( _ 
   ByVal val As String _ 
) As Boolean
C#
public static bool IsId(
   string val
)
C++
public:
 static bool IsId(
   String val
)
J#
public static bool IsId(
   string val
)
JScript
public static  function IsId(
   val : String
) : bool

Parameters

val
The String to verify.

Return Value

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

See Also