CCFXStringSet* CCFXRequest::CreateStringSet(void)
Allocates and returns an instance. Always use this function to create string sets, as opposed to directly using the new operator.
Returns an object of CCFXStringSet class. The memory allocated for the returned string set is freed automatically by ColdFusion after the request is completed
The following example creates a string set and adds three strings to it:
CCFXStringSet* pColors = pRequest->CreateStringSet() ; pColors->AddString( "Red" ) ; pColors->AddString( "Green" ) ; pColors->AddString( "Blue" ) ;