我想在$Settings中保存不同的参数,因为它是全局的,我想使用这些值,即使当会话被传输时也就是它变为空时。
我目前正在这样做,
var updatedContext = new Context(ctx)
{
[ContextParameterName] = ContextVals
};
FireChangeContext(new ContextEventArgs(updatedContext));
但是通过这个我只能将值保存在 $Context 中。我希望将值存储在$Settings中。
期待提供帮助。