Exemple #1
0
 /// <summary>
 /// Implementation of the <see cref="IScopeFactory.CreateScope"/> method.
 ///
 /// The base definition creates a <see cref="ContainerScope"/> with this container passed as the scope's container.
 ///
 /// Thus, the new scope is a 'root' scope.
 /// </summary>
 public ContainerScope CreateScope()
 {
     return(_scope.CreateScope());
 }
 /// <summary>
 /// Creates a new scope
 /// </summary>
 public ContainerScope CreateScope() => _scope.CreateScope();