Exemplo n.º 1
0
 public InterceptChannel(Type interceptedType, InterceptPoint interceptPoint, ISerializer serializer)
     : base(serializer)
 {
     _serviceType    = interceptedType;
     _interceptPoint = interceptPoint;
     CreateMethodMap();
 }
 public InterceptChannel(Type interceptedType, InterceptPoint interceptPoint)
 {
     _serviceType    = interceptedType;
     _interceptPoint = interceptPoint;
     CreateMethodMap();
 }