public void StoreScope(ContextScopeBase scope, Type contextType)
 {
     Scope = scope;
 }
Example #2
0
 public void StoreScope(ContextScopeBase scope, Type contextType)
 {
     Scope = scope;
 }
 public void RemoveScope(Type contextType)
 {
     Scope = null;
 }
Example #4
0
 public void RemoveScope(Type contextType)
 {
     Scope = null;
 }
 public void StoreScope(ContextScopeBase scope, Type contextType)
 {
     throw new NotImplementedException();
 }
 public void StoreScope(ContextScopeBase scope, Type contextType)
 {
     Storage.StoreScope(scope, contextType);
 }
Example #7
0
 public void StoreScope(ContextScopeBase scope, Type contextType)
 {
     throw new NotImplementedException();
 }
 public void StoreScope(ContextScopeBase scope, Type contextType)
 {
     storage[contextType] = scope;
 }