Shown how code can get and set the call context.
void SomeMethod() { MyObject myObject = new MyObject(); CallContext.SetData(“MyItem”) = myObject; } void SomeOtherMethod() { MyObject myObject = CallContext.GetData(“MyItem”); }