PutContext

Adds the new context properties to the current context properties.

Syntax

public void PutContext(Hashtable context) 

Parameters

  • The new context hashtable to be added to the current context hashtable

Results

None.

Example

//Hashtable is the .NET Framework class 
Hashtable context = new Hashtable(); 
//more code 
message.PutContext(context);