Use CallContext.SetObject() or CallContext.SetText() to save information in the CallContext.
Then, somewhere else in the code, use CallContext.GetObject() or CallContext.GetText() to retrieve that same value from memory.
Remember, the values saved in CallContext are local to the current thread (or request being processed).