Constructs an ID from a string representing its GUID value. A valid string consists of optional whitespace, an optional left brace({), followed by required 8 hexadecimal characters, a dash, 4 hexadecimal characters, a dash, 4 hexadecimal characters, a dash, 4 hexadecimal characters, a dash, and 12 hexadecimal characters, then finally an optional right brace(}) followed by whitespace. The braces must either both be present or both be omitted. For example: {1234abcd-56ef-7a89-9fe8-7d65cd43ba21} If the input string does not conform to this format, an exception is thrown.

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

ToggleSyntax

Visual Basic (Declaration)
Public Sub New ( _
	id As String _
)
C#
public Id(
	string id
)
Visual C++
public:
Id(
	String^ id
)
JavaScript
FileNet.Api.Util.Id = function(id);

Parameters

id
Type: System..::.String
A GUID value in String format from which to construct an ID.

ToggleSee Also