GetContextMap

すべてのコンテキスト エントリが含まれるマップを取得します。

構文

ASCII バージョン
MAP_STRING**getContextMap(Message* message) 
Where the MAP_STRING is defined by 
typedef struct map_string{ 
char* key; 
char* value; 
}MAP_STRING;
Unicode バージョン
MAP_STRING**getContextMap(Message* message) 
Where the MAP_STRING is defined by 
typedef struct map_string{ 
UChar* key; 
UChar* value; 
}MAP_STRING;

パラメータ

  • Message - この関数で操作するメッセージ。

結果

すべてのコンテキスト エントリが含まれる MAP_STRING の配列を返します。

ASCII バージョン
int i; 
char* name; 
char* value; 
MAP_STRING** mapping; 
mapping = getContextMap( message); 
i=0; 
while(mapping[i] != NULL) 
{ 
name= mapping[i]->key; 
value = mapping[i]->value; 
i++; 
}
Unicode バージョン
int i; 
UChar* name; 
UChar* value; 
MAP_STRING** mapping; 
mapping = getContextMap( message); 
i=0; 
while(mapping[i] != NULL) 
{ 
name= mapping[i]->key; 
value = mapping[i]->value; 
i++; 
}