SetContexts

Overwrites the current context properties with the new context properties.

Syntax

public void SetContexts(Hashtable context) 

Parameters

  • Context - the new context hashtable that will replace the current context hashtable.

Results

None.

Example

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