BackUp LevelNext

CCFXRequest::GetCustomData

LPVOID CCFXRequest::GetCustomData(void)

Gets the custom (tag specific) data for the request. This member is typically used from within subroutines of your tag implementation to extract tag specific data from within the request.

Returns a pointer to the custom data or returns NULL if no custom data has been set during this request using SetCustomData.

Example

The following example retrieves a pointer to a request specific data structure of hypothetical type MYTAGDATA:

void DoSomeGruntWork( CCFXRequest* pRequest )
{
        MYTAGDATA* pTagData =
            (MYTAGDATA*)pRequest->GetCustomData() ;
 
        ... remainder of procedure ...
}

BackUp LevelNext

allaire

AllaireDoc@allaire.com
Copyright © 1998, Allaire Corporation. All rights reserved.