Пример #1
0
 // Walk the object graph for the given type
 // Throws ZenjectResolveException if there is a problem
 public IEnumerable <ZenjectResolveException> ValidateResolve(Type contractType)
 {
     return(BindingValidator.ValidateContract(this, contractType));
 }
Пример #2
0
 // Walk the object graph for the given type
 // Throws ZenjectResolveException if there is a problem
 public IEnumerable <ZenjectResolveException> ValidateResolve <TContract>()
 {
     return(BindingValidator.ValidateContract(this, typeof(TContract)));
 }