Click or drag to resize
ObjectHelperParseFullName Method
Parses the full name in format "something.whatewer.abc" so that "something.whatever" is considered the first part, and "abc" second part.

Namespace: CMS.DataEngine
Assembly: CMS.DataEngine (in CMS.DataEngine.dll) Version: 10.0.0
Syntax
C#
public static bool ParseFullName(
	string fullName,
	out string firstPart,
	out string secondPart,
	string delimiter = "."
)

Parameters

fullName
Type: SystemString
Given full name
firstPart
Type: SystemString
First part
secondPart
Type: SystemString
Second part
delimiter (Optional)
Type: SystemString
Fullname delimiter

Return Value

Type: Boolean
See Also