File tree 2 files changed +10
-0
lines changed 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -2469,6 +2469,10 @@ public System.Type CreateInterfaceProxyTypeWithoutTarget(System.Type interfaceTo
2469
2469
}
2470
2470
[ System . Serializable ]
2471
2471
public sealed class DynamicProxyException : System . Exception { }
2472
+ public interface IByRefLikeConverterSelector
2473
+ {
2474
+ System . Type SelectConverterType ( System . Reflection . MethodInfo method , int parameterPosition , System . Type parameterType ) ;
2475
+ }
2472
2476
public interface IChangeProxyTarget
2473
2477
{
2474
2478
void ChangeInvocationTarget ( object target ) ;
@@ -2615,6 +2619,7 @@ public ProxyGenerationOptions() { }
2615
2619
public ProxyGenerationOptions ( Castle . DynamicProxy . IProxyGenerationHook hook ) { }
2616
2620
public System . Collections . Generic . IList < Castle . DynamicProxy . CustomAttributeInfo > AdditionalAttributes { get ; }
2617
2621
public System . Type BaseTypeForInterfaceProxy { get ; set ; }
2622
+ public Castle . DynamicProxy . IByRefLikeConverterSelector ByRefLikeConverterSelector { get ; set ; }
2618
2623
public bool HasMixins { get ; }
2619
2624
public Castle . DynamicProxy . IProxyGenerationHook Hook { get ; set ; }
2620
2625
public Castle . DynamicProxy . MixinData MixinData { get ; }
Original file line number Diff line number Diff line change @@ -2467,6 +2467,10 @@ public System.Type CreateInterfaceProxyTypeWithoutTarget(System.Type interfaceTo
2467
2467
}
2468
2468
[ System . Serializable ]
2469
2469
public sealed class DynamicProxyException : System . Exception { }
2470
+ public interface IByRefLikeConverterSelector
2471
+ {
2472
+ System . Type SelectConverterType ( System . Reflection . MethodInfo method , int parameterPosition , System . Type parameterType ) ;
2473
+ }
2470
2474
public interface IChangeProxyTarget
2471
2475
{
2472
2476
void ChangeInvocationTarget ( object target ) ;
@@ -2613,6 +2617,7 @@ public ProxyGenerationOptions() { }
2613
2617
public ProxyGenerationOptions ( Castle . DynamicProxy . IProxyGenerationHook hook ) { }
2614
2618
public System . Collections . Generic . IList < Castle . DynamicProxy . CustomAttributeInfo > AdditionalAttributes { get ; }
2615
2619
public System . Type BaseTypeForInterfaceProxy { get ; set ; }
2620
+ public Castle . DynamicProxy . IByRefLikeConverterSelector ByRefLikeConverterSelector { get ; set ; }
2616
2621
public bool HasMixins { get ; }
2617
2622
public Castle . DynamicProxy . IProxyGenerationHook Hook { get ; set ; }
2618
2623
public Castle . DynamicProxy . MixinData MixinData { get ; }
You can’t perform that action at this time.
0 commit comments