CCFXRequest::SetCustomData  
 
 
void CCFXRequest::SetCustomData(LPVOID lpvData) 

Sets custom (tag specific) data to carry along with the request. You should use this function to store request specific data that you want to pass along to procedures within your custom tag implementation.

lpvData

Pointer to custom data.

 
 
  Example  
 

The following example creates a request-specific data structure of hypothetical type MYTAGDATA and stores a pointer to the structure in the request for future use:

void ProcessTagRequest( CCFXRequest* pRequest )
{
        try
        {
            MYTAGDATA tagData ;
            pRequest->SetCustomData( (LPVOID)&tagData ) ;
 
        ... remainder of procedure ...
}


 
 
BackUp LevelNext
 
 

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