Exemplo n.º 1
0
 public XHDescriptor(string xHname, XHLifetime lifetime, Type xHServiceType, Type xHImplementationType)
 {
     XHname               = xHname;
     this.lifetime        = lifetime;
     XHServiceType        = xHServiceType;
     XHImplementationType = xHImplementationType;
 }
Exemplo n.º 2
0
 public XHDescriptor(string xHname, XHLifetime lifetime, Type xHServiceType, Type xHImplementationType, object xHImplementationInstance, Func <Type, object> creator) : this(xHname, lifetime, xHServiceType, xHImplementationType, xHImplementationInstance)
 {
     Creator = creator;
 }
Exemplo n.º 3
0
 public XHDescriptor(string xHname, XHLifetime lifetime, Type xHServiceType, Type xHImplementationType, object xHImplementationInstance) : this(xHname, lifetime, xHServiceType, xHImplementationType)
 {
     XHImplementationInstance = xHImplementationInstance;
 }