public static void SetBindingScope(this IPropertyInjection owner, IBindingScope value)
 {
     owner.InjectedProperties.SetInjectedProperty(BindingScopeInjectedProperty.BindingScopeProperty, value);
 }
Ejemplo n.º 2
0
 public DynamicProxyInterceptor(IBindingScope scope, object original, BindingPairHolder bindingPairHolder)
 {
     this.scope = scope;
     proxied = original;
     this.bindingPairHolder = bindingPairHolder;
 }
Ejemplo n.º 3
0
 protected virtual IBindingCondition As(IBindingScope scope, Type concreteType)
 {
     return(scope.As(BindingScope));
 }
Ejemplo n.º 4
0
 protected virtual IBindingCondition As(IBindingScope scope, Type concreteType)
 {
     return scope.As(BindingScope);
 }
Ejemplo n.º 5
0
		/// <summary>
		/// Pushes the scope.
		/// </summary>
		/// <param name="scope">The scope.</param>
		public void PushScope(IBindingScope scope)
		{
			scopes.Push(scope);
		}