public LoggingInterfaceMethodBehavior(ILogMethodInvocation logMethodInvocation, PropertyMappingDictionary propertyMappingDictionary, Type actualInterceptedType)
     : base(logMethodInvocation, propertyMappingDictionary)
 {
     _actualInterceptedType = actualInterceptedType;
 }
 public FakeLoggingInterceptionBehavior(ILogMethodInvocation logMethodInvocation, PropertyMappingDictionary propertyMappingDictionary)
     : base(logMethodInvocation, propertyMappingDictionary)
 {
 }
        public LoggingVirtualMethodBehavior(ILogMethodInvocation logMethodInvocation, PropertyMappingDictionary propertyMappingDictionary)
            : base(logMethodInvocation, propertyMappingDictionary)
		{
		}
 protected LoggingInterceptionBehavior(ILogMethodInvocation logMethodInvocation, PropertyMappingDictionary propertyMappingDictionary)
 {
     _logMethodInvocation = logMethodInvocation;
     _propertyMappingDictionary = propertyMappingDictionary;
 }