add sample

This commit is contained in:
Daniel
2019-09-28 22:53:46 +08:00
parent df43379a65
commit 329c8cda5a
55 changed files with 178 additions and 59685 deletions

View File

@@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AutofacWihtAOP", "AutofacWihtAOP\AutofacWihtAOP.csproj", "{7E255C44-A965-4B58-8249-74426F6B72D7}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AutofacWithAOP", "AutofacWihtAOP\AutofacWithAOP.csproj", "{7E255C44-A965-4B58-8249-74426F6B72D7}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution

View File

@@ -7,8 +7,8 @@
<ProjectGuid>{7E255C44-A965-4B58-8249-74426F6B72D7}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>AutofacWihtAOP</RootNamespace>
<AssemblyName>AutofacWihtAOP</AssemblyName>
<RootNamespace>AutofacWithAOP</RootNamespace>
<AssemblyName>AutofacWithAOP</AssemblyName>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
@@ -38,8 +38,8 @@
<Private>True</Private>
</Reference>
<Reference Include="Autofac.Extras.DynamicProxy, Version=4.5.0.0, Culture=neutral, PublicKeyToken=17863af14b0044da, processorArchitecture=MSIL">
<HintPath>..\packages\Autofac.Extras.DynamicProxy.4.5.0\lib\net45\Autofac.Extras.DynamicProxy.dll</HintPath>
<Private>True</Private>
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\..\Autofac.Extras.DynamicProxy\src\Autofac.Extras.DynamicProxy\bin\Debug\net45\Autofac.Extras.DynamicProxy.dll</HintPath>
</Reference>
<Reference Include="Castle.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=407dd0808d44fbdc, processorArchitecture=MSIL">
<HintPath>..\packages\Castle.Core.4.3.1\lib\net45\Castle.Core.dll</HintPath>
@@ -56,16 +56,21 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="CacheInterceptor.cs" />
<Compile Include="FieldAttribute.cs" />
<Compile Include="FunctionAttribute.cs" />
<Compile Include="ILogService.cs" />
<Compile Include="IPerson.cs" />
<Compile Include="ITimeService.cs" />
<Compile Include="IUserService.cs" />
<Compile Include="LogFilter.cs" />
<Compile Include="LogInterceptor.cs" />
<Compile Include="LogModel.cs" />
<Compile Include="LogService.cs" />
<Compile Include="Person.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="TimeService.cs" />
<Compile Include="UserModel.cs" />
<Compile Include="UserService.cs" />
</ItemGroup>

View File

@@ -0,0 +1,36 @@
using System;
using System.Runtime.Remoting.Messaging;
using Castle.DynamicProxy;
namespace AutofacWithAOP
{
public class CacheInterceptor : IInterceptor
{
public string Data { get; set; }
private ITimeService _timeService;
public CacheInterceptor(ITimeService s)
{
_timeService = s;
}
public void Intercept(IInvocation invocation)
{
var key = invocation.GetConcreteMethod().Name;
var time = CallContext.GetData(key)?.ToString();
if (time == null)
{
Console.WriteLine("Set Cache Time");
//如果沒有快取 執行呼叫Service
invocation.Proceed();
CallContext.SetData(key, invocation.ReturnValue);
}
else
{
//如果有快取直接取值
Console.WriteLine("Get Time From Cache");
invocation.ReturnValue = time;
}
}
}
}

View File

@@ -1,6 +1,6 @@
using System;
namespace AutofacWihtAOP
namespace AutofacWithAOP
{
public class FieldAttribute : Attribute
{

View File

@@ -1,6 +1,6 @@
using System;
namespace AutofacWihtAOP
namespace AutofacWithAOP
{
public class FunctionAttribute : Attribute
{

View File

@@ -1,4 +1,4 @@
namespace AutofacWihtAOP
namespace AutofacWithAOP
{
public interface ILogService
{

View File

@@ -0,0 +1,7 @@
namespace AutofacWithAOP
{
public interface IPerson
{
string SaySomething();
}
}

View File

@@ -0,0 +1,7 @@
namespace AutofacWithAOP
{
public interface ITimeService
{
string GetTime();
}
}

View File

@@ -1,4 +1,4 @@
namespace AutofacWihtAOP
namespace AutofacWithAOP
{
public interface IUserService
{

View File

@@ -1,4 +1,4 @@
namespace AutofacWihtAOP
namespace AutofacWithAOP
{
public class LogFilter
{

View File

@@ -5,110 +5,24 @@ using System.Reflection;
using System.Runtime.InteropServices;
using Castle.DynamicProxy;
namespace AutofacWihtAOP
namespace AutofacWithAOP
{
public class LogInterceptor : IInterceptor
{
public string Data { get; set; }
public string Data1 { get; set; }
private ILogService _logService;
public LogInterceptor(ILogService logservice)
public LogInterceptor(ILogService logService)
{
_logService = logservice;
_logService = logService;
}
public void Intercept(IInvocation invocation)
{
var models = invocation.Arguments.Where(Ext.IsAttributeType<FunctionAttribute>);
var selectMany = models.SelectMany(x=> x.GetType().GetPropertiesBy<FieldAttribute>(),
(model,prop)=> new
{
CurrentValue = prop.GetValue(model),
FieldName = prop.GetAttributeValue((FieldAttribute z) => z.Name),
functionName = model.GetType()
.GetAttributeValue((FunctionAttribute attr) => attr.Name)
});
foreach (var prop in selectMany)
{
var lastLog = _logService.GetLastLog(new LogFilter()
{
FieldName = prop.FieldName,
FunctionName = prop.functionName
});
var logModel = new LogModel()
{
UserCode = "Dnaiel",
FunctionName = prop.functionName,
FieldName = prop.FieldName,
NewValue = prop.CurrentValue?.ToString()
};
if (lastLog != null)
logModel.OldValue = lastLog.NewValue;
else
logModel.OldValue = string.Empty;
_logService.AddLog(logModel);
}
}
}
public static class Ext
{
public static IEnumerable<PropertyInfo> GetPropertiesBy<T>
(this Type type,bool inherit = true)
where T : Attribute
{
if (type == null)
throw new Exception("type can't be null");
return type.GetProperties()
.Where(x => x.GetCustomAttribute<T>(inherit) != null);
}
public static bool IsAttributeType<TAttr>(this object obj)
where TAttr : Attribute
{
return IsAttributeType<TAttr>(obj, true);
}
public static bool IsAttributeType<TAttr>(this object obj,bool inherit)
where TAttr : Attribute
{
return obj.GetType()
.GetCustomAttribute<TAttr>(inherit) != null;
}
public static TRtn GetAttributeValue<TAttr, TRtn>(this PropertyInfo prop,
Func<TAttr,TRtn> selector)
where TAttr : Attribute
{
TRtn result = default(TRtn);
var attr = prop.GetCustomAttribute<TAttr>();
if (selector == null || attr == null)
return result;
return selector(attr);
}
public static TRtn GetAttributeValue<TAttr, TRtn>(this Type prop,
Func<TAttr, TRtn> selector)
where TAttr : Attribute
{
TRtn result = default(TRtn);
var attr = prop.GetCustomAttribute<TAttr>();
if (selector == null || attr == null)
return result;
return selector(attr);
Console.WriteLine("LogInterceptor Start");
invocation.Proceed();
Console.WriteLine("LogInterceptor End");
}
}
}

View File

@@ -1,6 +1,6 @@
using System;
namespace AutofacWihtAOP
namespace AutofacWithAOP
{
public class LogModel
{

View File

@@ -1,7 +1,7 @@
using System.Collections.Generic;
using System.Linq;
namespace AutofacWihtAOP
namespace AutofacWithAOP
{
public class LogService : ILogService
{

View File

@@ -0,0 +1,15 @@
using System;
using Autofac.Extras.DynamicProxy;
namespace AutofacWithAOP
{
[Intercept(typeof(CacheInterceptor))]
[Intercept(typeof(LogInterceptor))]
public class Person : IPerson
{
public string SaySomething()
{
return DateTime.Now.ToLongTimeString();
}
}
}

View File

@@ -1,74 +1,21 @@
using System;
using System.CodeDom;
using System.Collections.Generic;
using System.Data.SqlTypes;
using System.IO;
using System.Linq;
using System.Runtime.Remoting.Messaging;
using System.Reflection;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using Autofac;
using Autofac.Builder;
using Autofac.Core;
using Autofac.Extras.DynamicProxy;
using Castle.DynamicProxy;
using static System.Convert;
namespace AutofacWihtAOP
namespace AutofacWithAOP
{
public interface ITimeService
{
string GetTime();
}
public class TimeService : ITimeService
{
public string GetTime()
{
return DateTime.Now.ToString("MM/dd/yyyy hh:mm:ss");
}
}
public class TimeInterceptor : IInterceptor
{
private ITimeService _timeService;
public TimeInterceptor(ITimeService s)
{
_timeService = s;
}
public void Intercept(IInvocation invocation)
{
var time = CallContext.GetData("time")?.ToString();
if (time == null)
{
//如果沒有快取 執行呼叫Service
invocation.Proceed();
CallContext.SetData("time", invocation.ReturnValue);
}
else
{
//如果有快取直接取值
invocation.ReturnValue = time;
}
}
}
[Intercept(typeof(TimeInterceptor))]
public class Person : IPerson
{
public string SaySomething()
{
return DateTime.Now.ToLongTimeString();
}
}
public interface IPerson
{
string SaySomething();
}
class Program
{
@@ -79,12 +26,11 @@ namespace AutofacWihtAOP
IPerson person = container.Resolve<IPerson>();
//Console.WriteLine(person.SaySomething());
//Thread.Sleep(5000);
//Console.WriteLine(person.SaySomething());
Console.WriteLine(person.SaySomething());
Thread.Sleep(5000);
Console.WriteLine(person.SaySomething());
IUserService personService = container.Resolve<IUserService>();
personService.ModifyUserInfo(new UserModel()
{
Birthday = DateTime.Now,
@@ -98,25 +44,65 @@ namespace AutofacWihtAOP
{
var builder = new ContainerBuilder();
builder.RegisterType<TimeInterceptor>(); //註冊攔截器
builder.RegisterType<LogInterceptor>(); //註冊攔截器
//將Assembly所有實現IInterceptor註冊入IOC容器中
builder.RegisterAssemblyTypes(Assembly.GetExecutingAssembly())
.AssignableTo(typeof(IInterceptor));
builder.RegisterType<LogService>()
.As<ILogService>();
builder.RegisterType<Person>()
.As<IPerson>()
.EnableInterfaceInterceptors();
builder.RegisterType<UserService>()
.As<IUserService>()
builder.RegisterAssemblyTypes(Assembly.GetExecutingAssembly())
.AsImplementedInterfaces()
.EnableInterfaceInterceptors();
//註冊時間Service
builder.RegisterType<TimeService>().As<ITimeService>();
//builder.RegisterType<UserService>()
// .As<IUserService>()
// .InterceptedBy(builder,
// new
// InterceptionData() { InterceptionType = typeof(LogInterceptor) },
// new InterceptionData(){ InterceptionType = typeof(CacheInterceptor) });
return builder.Build();
}
}
public class InterceptionData
{
public Type InterceptionType { get; set; }
public IEnumerable<Parameter> Parameters { get; set; } = new List<Parameter>();
}
public static class InterceptionExtensions
{
public static IRegistrationBuilder<TLimit, ConcreteReflectionActivatorData, TRegistrationStyle>
InterceptedBy<TLimit, TRegistrationStyle>(
this IRegistrationBuilder<TLimit, ConcreteReflectionActivatorData, TRegistrationStyle> registration,
ContainerBuilder builder,
params InterceptionData[] datas)
{
registration.EnableInterception();
var interceptions = datas.Where(x => typeof(IInterceptor).IsAssignableFrom(x.InterceptionType));
registration.InterceptedBy(interceptions.Select(x => x.InterceptionType.FullName).ToArray());
foreach (var data in datas)
{
builder.RegisterType(data.InterceptionType)
.WithProperties(data.Parameters)
.Named<IInterceptor>(data.InterceptionType.FullName);
}
return registration;
}
private static void EnableInterception<TLimit, TRegistrationStyle>(this IRegistrationBuilder<TLimit, ConcreteReflectionActivatorData, TRegistrationStyle> registration)
{
//判斷註冊type是否是Interface
if (registration.RegistrationData
.Services
.OfType<IServiceWithType>().Any(x => x.ServiceType.IsInterface))
registration.EnableInterfaceInterceptors();
else
registration.EnableClassInterceptors();
}
}
}

View File

@@ -0,0 +1,12 @@
using System;
namespace AutofacWithAOP
{
public class TimeService : ITimeService
{
public string GetTime()
{
return DateTime.Now.ToString("MM/dd/yyyy hh:mm:ss");
}
}
}

View File

@@ -1,6 +1,6 @@
using System;
namespace AutofacWihtAOP
namespace AutofacWithAOP
{
[Function(Name = "Login")]
public class UserModel

View File

@@ -1,13 +1,15 @@
using Autofac.Extras.DynamicProxy;
using System;
using Autofac.Extras.DynamicProxy;
namespace AutofacWihtAOP
namespace AutofacWithAOP
{
[Intercept(typeof(CacheInterceptor))]
[Intercept(typeof(LogInterceptor))]
public class UserService:IUserService
{
public void ModifyUserInfo(UserModel model)
public virtual void ModifyUserInfo(UserModel model)
{
Console.WriteLine("UserService Value");
}
}
}

View File

@@ -3,4 +3,9 @@
<package id="Autofac" version="4.0.1" targetFramework="net452" />
<package id="Autofac.Extras.DynamicProxy" version="4.5.0" targetFramework="net452" />
<package id="Castle.Core" version="4.3.1" targetFramework="net452" />
<package id="FluentValidation" version="8.1.3" targetFramework="net452" />
<package id="System.Collections.Concurrent" version="4.3.0" targetFramework="net452" />
<package id="System.ComponentModel.Annotations" version="4.4.1" targetFramework="net452" />
<package id="System.ComponentModel.Primitives" version="4.3.0" targetFramework="net452" />
<package id="System.ValueTuple" version="4.5.0" targetFramework="net452" />
</packages>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1,212 +0,0 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Autofac.Extras.DynamicProxy</name>
</assembly>
<members>
<member name="T:Autofac.Extras.DynamicProxy.InterceptAttribute">
<summary>
Indicates that a type should be intercepted.
</summary>
</member>
<member name="P:Autofac.Extras.DynamicProxy.InterceptAttribute.InterceptorService">
<summary>
Gets the interceptor service.
</summary>
</member>
<member name="M:Autofac.Extras.DynamicProxy.InterceptAttribute.#ctor(Autofac.Core.Service)">
<summary>
Initializes a new instance of the <see cref="T:Autofac.Extras.DynamicProxy.InterceptAttribute"/> class.
</summary>
<param name="interceptorService">The interceptor service.</param>
<exception cref="T:System.ArgumentNullException">
Thrown if <paramref name="interceptorService" /> is <see langword="null" />.
</exception>
</member>
<member name="M:Autofac.Extras.DynamicProxy.InterceptAttribute.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Autofac.Extras.DynamicProxy.InterceptAttribute"/> class.
</summary>
<param name="interceptorServiceName">Name of the interceptor service.</param>
</member>
<member name="M:Autofac.Extras.DynamicProxy.InterceptAttribute.#ctor(System.Type)">
<summary>
Initializes a new instance of the <see cref="T:Autofac.Extras.DynamicProxy.InterceptAttribute"/> class.
</summary>
<param name="interceptorServiceType">The typed interceptor service.</param>
</member>
<member name="T:Autofac.Extras.DynamicProxy.RegistrationExtensions">
<summary>
Adds registration syntax to the <see cref="T:Autofac.ContainerBuilder"/> type.
</summary>
</member>
<member name="M:Autofac.Extras.DynamicProxy.RegistrationExtensions.EnableClassInterceptors``2(Autofac.Builder.IRegistrationBuilder{``0,Autofac.Features.Scanning.ScanningActivatorData,``1})">
<summary>
Enable class interception on the target type. Interceptors will be determined
via Intercept attributes on the class or added with InterceptedBy().
Only virtual methods can be intercepted this way.
</summary>
<typeparam name="TLimit">Registration limit type.</typeparam>
<typeparam name="TRegistrationStyle">Registration style.</typeparam>
<param name="registration">Registration to apply interception to.</param>
<returns>Registration builder allowing the registration to be configured.</returns>
</member>
<member name="M:Autofac.Extras.DynamicProxy.RegistrationExtensions.EnableClassInterceptors``3(Autofac.Builder.IRegistrationBuilder{``0,``1,``2})">
<summary>
Enable class interception on the target type. Interceptors will be determined
via Intercept attributes on the class or added with InterceptedBy().
Only virtual methods can be intercepted this way.
</summary>
<typeparam name="TLimit">Registration limit type.</typeparam>
<typeparam name="TConcreteReflectionActivatorData">Activator data type.</typeparam>
<typeparam name="TRegistrationStyle">Registration style.</typeparam>
<param name="registration">Registration to apply interception to.</param>
<returns>Registration builder allowing the registration to be configured.</returns>
</member>
<member name="M:Autofac.Extras.DynamicProxy.RegistrationExtensions.EnableClassInterceptors``2(Autofac.Builder.IRegistrationBuilder{``0,Autofac.Features.Scanning.ScanningActivatorData,``1},Castle.DynamicProxy.ProxyGenerationOptions,System.Type[])">
<summary>
Enable class interception on the target type. Interceptors will be determined
via Intercept attributes on the class or added with InterceptedBy().
Only virtual methods can be intercepted this way.
</summary>
<typeparam name="TLimit">Registration limit type.</typeparam>
<typeparam name="TRegistrationStyle">Registration style.</typeparam>
<param name="registration">Registration to apply interception to.</param>
<param name="options">Proxy generation options to apply.</param>
<param name="additionalInterfaces">Additional interface types. Calls to their members will be proxied as well.</param>
<returns>Registration builder allowing the registration to be configured.</returns>
</member>
<member name="M:Autofac.Extras.DynamicProxy.RegistrationExtensions.EnableClassInterceptors``3(Autofac.Builder.IRegistrationBuilder{``0,``1,``2},Castle.DynamicProxy.ProxyGenerationOptions,System.Type[])">
<summary>
Enable class interception on the target type. Interceptors will be determined
via Intercept attributes on the class or added with InterceptedBy().
Only virtual methods can be intercepted this way.
</summary>
<typeparam name="TLimit">Registration limit type.</typeparam>
<typeparam name="TConcreteReflectionActivatorData">Activator data type.</typeparam>
<typeparam name="TRegistrationStyle">Registration style.</typeparam>
<param name="registration">Registration to apply interception to.</param>
<param name="options">Proxy generation options to apply.</param>
<param name="additionalInterfaces">Additional interface types. Calls to their members will be proxied as well.</param>
<returns>Registration builder allowing the registration to be configured.</returns>
</member>
<member name="M:Autofac.Extras.DynamicProxy.RegistrationExtensions.EnableInterfaceInterceptors``3(Autofac.Builder.IRegistrationBuilder{``0,``1,``2})">
<summary>
Enable interface interception on the target type. Interceptors will be determined
via Intercept attributes on the class or interface, or added with InterceptedBy() calls.
</summary>
<typeparam name="TLimit">Registration limit type.</typeparam>
<typeparam name="TActivatorData">Activator data type.</typeparam>
<typeparam name="TSingleRegistrationStyle">Registration style.</typeparam>
<param name="registration">Registration to apply interception to.</param>
<returns>Registration builder allowing the registration to be configured.</returns>
</member>
<member name="M:Autofac.Extras.DynamicProxy.RegistrationExtensions.EnableInterfaceInterceptors``3(Autofac.Builder.IRegistrationBuilder{``0,``1,``2},Castle.DynamicProxy.ProxyGenerationOptions)">
<summary>
Enable interface interception on the target type. Interceptors will be determined
via Intercept attributes on the class or interface, or added with InterceptedBy() calls.
</summary>
<typeparam name="TLimit">Registration limit type.</typeparam>
<typeparam name="TActivatorData">Activator data type.</typeparam>
<typeparam name="TSingleRegistrationStyle">Registration style.</typeparam>
<param name="registration">Registration to apply interception to.</param>
<param name="options">Proxy generation options to apply.</param>
<returns>Registration builder allowing the registration to be configured.</returns>
</member>
<member name="M:Autofac.Extras.DynamicProxy.RegistrationExtensions.InterceptedBy``3(Autofac.Builder.IRegistrationBuilder{``0,``1,``2},Autofac.Core.Service[])">
<summary>
Allows a list of interceptor services to be assigned to the registration.
</summary>
<typeparam name="TLimit">Registration limit type.</typeparam>
<typeparam name="TActivatorData">Activator data type.</typeparam>
<typeparam name="TStyle">Registration style.</typeparam>
<param name="builder">Registration to apply interception to.</param>
<param name="interceptorServices">The interceptor services.</param>
<returns>Registration builder allowing the registration to be configured.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="builder"/> or <paramref name="interceptorServices"/>.</exception>
</member>
<member name="M:Autofac.Extras.DynamicProxy.RegistrationExtensions.InterceptedBy``3(Autofac.Builder.IRegistrationBuilder{``0,``1,``2},System.String[])">
<summary>
Allows a list of interceptor services to be assigned to the registration.
</summary>
<typeparam name="TLimit">Registration limit type.</typeparam>
<typeparam name="TActivatorData">Activator data type.</typeparam>
<typeparam name="TStyle">Registration style.</typeparam>
<param name="builder">Registration to apply interception to.</param>
<param name="interceptorServiceNames">The names of the interceptor services.</param>
<returns>Registration builder allowing the registration to be configured.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="builder"/> or <paramref name="interceptorServiceNames"/>.</exception>
</member>
<member name="M:Autofac.Extras.DynamicProxy.RegistrationExtensions.InterceptedBy``3(Autofac.Builder.IRegistrationBuilder{``0,``1,``2},System.Type[])">
<summary>
Allows a list of interceptor services to be assigned to the registration.
</summary>
<typeparam name="TLimit">Registration limit type.</typeparam>
<typeparam name="TActivatorData">Activator data type.</typeparam>
<typeparam name="TStyle">Registration style.</typeparam>
<param name="builder">Registration to apply interception to.</param>
<param name="interceptorServiceTypes">The types of the interceptor services.</param>
<returns>Registration builder allowing the registration to be configured.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="builder"/> or <paramref name="interceptorServiceTypes"/>.</exception>
</member>
<member name="M:Autofac.Extras.DynamicProxy.RegistrationExtensions.InterceptTransparentProxy``3(Autofac.Builder.IRegistrationBuilder{``0,``1,``2},System.Type[])">
<summary>
Intercepts the interface of a transparent proxy (such as WCF channel factory based clients).
</summary>
<typeparam name="TLimit">Registration limit type.</typeparam>
<typeparam name="TActivatorData">Activator data type.</typeparam>
<typeparam name="TSingleRegistrationStyle">Registration style.</typeparam>
<param name="registration">Registration to apply interception to.</param>
<param name="additionalInterfacesToProxy">Additional interface types. Calls to their members will be proxied as well.</param>
<returns>Registration builder allowing the registration to be configured.</returns>
</member>
<member name="M:Autofac.Extras.DynamicProxy.RegistrationExtensions.InterceptTransparentProxy``3(Autofac.Builder.IRegistrationBuilder{``0,``1,``2},Castle.DynamicProxy.ProxyGenerationOptions,System.Type[])">
<summary>
Intercepts the interface of a transparent proxy (such as WCF channel factory based clients).
</summary>
<typeparam name="TLimit">Registration limit type.</typeparam>
<typeparam name="TActivatorData">Activator data type.</typeparam>
<typeparam name="TSingleRegistrationStyle">Registration style.</typeparam>
<param name="registration">Registration to apply interception to.</param>
<param name="options">Proxy generation options to apply.</param>
<param name="additionalInterfacesToProxy">Additional interface types. Calls to their members will be proxied as well.</param>
<returns>Registration builder allowing the registration to be configured.</returns>
</member>
<member name="T:Autofac.Extras.DynamicProxy.RegistrationExtensionsResources">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:Autofac.Extras.DynamicProxy.RegistrationExtensionsResources.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:Autofac.Extras.DynamicProxy.RegistrationExtensionsResources.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member>
<member name="P:Autofac.Extras.DynamicProxy.RegistrationExtensionsResources.InterfaceNotSupportedByTransparentProxy">
<summary>
Looks up a localized string similar to The transparent proxy does not support the additional interface(s): {0}..
</summary>
</member>
<member name="P:Autofac.Extras.DynamicProxy.RegistrationExtensionsResources.InterfaceProxyingOnlySupportsInterfaceServices">
<summary>
Looks up a localized string similar to The component {0} cannot use interface interception as it provides services that are not publicly visible interfaces. Check your registration of the component to ensure you&apos;re not enabling interception and registering it as an internal/private interface type..
</summary>
</member>
<member name="P:Autofac.Extras.DynamicProxy.RegistrationExtensionsResources.TransparentProxyIsNotInterface">
<summary>
Looks up a localized string similar to The transparent proxy of type &apos;{0}&apos; must be an interface..
</summary>
</member>
<member name="P:Autofac.Extras.DynamicProxy.RegistrationExtensionsResources.TypeIsNotTransparentProxy">
<summary>
Looks up a localized string similar to The instance of type &apos;{0}&apos; is not a transparent proxy..
</summary>
</member>
</members>
</doc>

View File

@@ -1,189 +0,0 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Autofac.Extras.DynamicProxy</name>
</assembly>
<members>
<member name="T:Autofac.Extras.DynamicProxy.InterceptAttribute">
<summary>
Indicates that a type should be intercepted.
</summary>
</member>
<member name="P:Autofac.Extras.DynamicProxy.InterceptAttribute.InterceptorService">
<summary>
Gets the interceptor service.
</summary>
</member>
<member name="M:Autofac.Extras.DynamicProxy.InterceptAttribute.#ctor(Autofac.Core.Service)">
<summary>
Initializes a new instance of the <see cref="T:Autofac.Extras.DynamicProxy.InterceptAttribute"/> class.
</summary>
<param name="interceptorService">The interceptor service.</param>
<exception cref="T:System.ArgumentNullException">
Thrown if <paramref name="interceptorService" /> is <see langword="null" />.
</exception>
</member>
<member name="M:Autofac.Extras.DynamicProxy.InterceptAttribute.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Autofac.Extras.DynamicProxy.InterceptAttribute"/> class.
</summary>
<param name="interceptorServiceName">Name of the interceptor service.</param>
</member>
<member name="M:Autofac.Extras.DynamicProxy.InterceptAttribute.#ctor(System.Type)">
<summary>
Initializes a new instance of the <see cref="T:Autofac.Extras.DynamicProxy.InterceptAttribute"/> class.
</summary>
<param name="interceptorServiceType">The typed interceptor service.</param>
</member>
<member name="T:Autofac.Extras.DynamicProxy.RegistrationExtensions">
<summary>
Adds registration syntax to the <see cref="T:Autofac.ContainerBuilder"/> type.
</summary>
</member>
<member name="M:Autofac.Extras.DynamicProxy.RegistrationExtensions.EnableClassInterceptors``2(Autofac.Builder.IRegistrationBuilder{``0,Autofac.Features.Scanning.ScanningActivatorData,``1})">
<summary>
Enable class interception on the target type. Interceptors will be determined
via Intercept attributes on the class or added with InterceptedBy().
Only virtual methods can be intercepted this way.
</summary>
<typeparam name="TLimit">Registration limit type.</typeparam>
<typeparam name="TRegistrationStyle">Registration style.</typeparam>
<param name="registration">Registration to apply interception to.</param>
<returns>Registration builder allowing the registration to be configured.</returns>
</member>
<member name="M:Autofac.Extras.DynamicProxy.RegistrationExtensions.EnableClassInterceptors``3(Autofac.Builder.IRegistrationBuilder{``0,``1,``2})">
<summary>
Enable class interception on the target type. Interceptors will be determined
via Intercept attributes on the class or added with InterceptedBy().
Only virtual methods can be intercepted this way.
</summary>
<typeparam name="TLimit">Registration limit type.</typeparam>
<typeparam name="TConcreteReflectionActivatorData">Activator data type.</typeparam>
<typeparam name="TRegistrationStyle">Registration style.</typeparam>
<param name="registration">Registration to apply interception to.</param>
<returns>Registration builder allowing the registration to be configured.</returns>
</member>
<member name="M:Autofac.Extras.DynamicProxy.RegistrationExtensions.EnableClassInterceptors``2(Autofac.Builder.IRegistrationBuilder{``0,Autofac.Features.Scanning.ScanningActivatorData,``1},Castle.DynamicProxy.ProxyGenerationOptions,System.Type[])">
<summary>
Enable class interception on the target type. Interceptors will be determined
via Intercept attributes on the class or added with InterceptedBy().
Only virtual methods can be intercepted this way.
</summary>
<typeparam name="TLimit">Registration limit type.</typeparam>
<typeparam name="TRegistrationStyle">Registration style.</typeparam>
<param name="registration">Registration to apply interception to.</param>
<param name="options">Proxy generation options to apply.</param>
<param name="additionalInterfaces">Additional interface types. Calls to their members will be proxied as well.</param>
<returns>Registration builder allowing the registration to be configured.</returns>
</member>
<member name="M:Autofac.Extras.DynamicProxy.RegistrationExtensions.EnableClassInterceptors``3(Autofac.Builder.IRegistrationBuilder{``0,``1,``2},Castle.DynamicProxy.ProxyGenerationOptions,System.Type[])">
<summary>
Enable class interception on the target type. Interceptors will be determined
via Intercept attributes on the class or added with InterceptedBy().
Only virtual methods can be intercepted this way.
</summary>
<typeparam name="TLimit">Registration limit type.</typeparam>
<typeparam name="TConcreteReflectionActivatorData">Activator data type.</typeparam>
<typeparam name="TRegistrationStyle">Registration style.</typeparam>
<param name="registration">Registration to apply interception to.</param>
<param name="options">Proxy generation options to apply.</param>
<param name="additionalInterfaces">Additional interface types. Calls to their members will be proxied as well.</param>
<returns>Registration builder allowing the registration to be configured.</returns>
</member>
<member name="M:Autofac.Extras.DynamicProxy.RegistrationExtensions.EnableInterfaceInterceptors``3(Autofac.Builder.IRegistrationBuilder{``0,``1,``2})">
<summary>
Enable interface interception on the target type. Interceptors will be determined
via Intercept attributes on the class or interface, or added with InterceptedBy() calls.
</summary>
<typeparam name="TLimit">Registration limit type.</typeparam>
<typeparam name="TActivatorData">Activator data type.</typeparam>
<typeparam name="TSingleRegistrationStyle">Registration style.</typeparam>
<param name="registration">Registration to apply interception to.</param>
<returns>Registration builder allowing the registration to be configured.</returns>
</member>
<member name="M:Autofac.Extras.DynamicProxy.RegistrationExtensions.EnableInterfaceInterceptors``3(Autofac.Builder.IRegistrationBuilder{``0,``1,``2},Castle.DynamicProxy.ProxyGenerationOptions)">
<summary>
Enable interface interception on the target type. Interceptors will be determined
via Intercept attributes on the class or interface, or added with InterceptedBy() calls.
</summary>
<typeparam name="TLimit">Registration limit type.</typeparam>
<typeparam name="TActivatorData">Activator data type.</typeparam>
<typeparam name="TSingleRegistrationStyle">Registration style.</typeparam>
<param name="registration">Registration to apply interception to.</param>
<param name="options">Proxy generation options to apply.</param>
<returns>Registration builder allowing the registration to be configured.</returns>
</member>
<member name="M:Autofac.Extras.DynamicProxy.RegistrationExtensions.InterceptedBy``3(Autofac.Builder.IRegistrationBuilder{``0,``1,``2},Autofac.Core.Service[])">
<summary>
Allows a list of interceptor services to be assigned to the registration.
</summary>
<typeparam name="TLimit">Registration limit type.</typeparam>
<typeparam name="TActivatorData">Activator data type.</typeparam>
<typeparam name="TStyle">Registration style.</typeparam>
<param name="builder">Registration to apply interception to.</param>
<param name="interceptorServices">The interceptor services.</param>
<returns>Registration builder allowing the registration to be configured.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="builder"/> or <paramref name="interceptorServices"/>.</exception>
</member>
<member name="M:Autofac.Extras.DynamicProxy.RegistrationExtensions.InterceptedBy``3(Autofac.Builder.IRegistrationBuilder{``0,``1,``2},System.String[])">
<summary>
Allows a list of interceptor services to be assigned to the registration.
</summary>
<typeparam name="TLimit">Registration limit type.</typeparam>
<typeparam name="TActivatorData">Activator data type.</typeparam>
<typeparam name="TStyle">Registration style.</typeparam>
<param name="builder">Registration to apply interception to.</param>
<param name="interceptorServiceNames">The names of the interceptor services.</param>
<returns>Registration builder allowing the registration to be configured.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="builder"/> or <paramref name="interceptorServiceNames"/>.</exception>
</member>
<member name="M:Autofac.Extras.DynamicProxy.RegistrationExtensions.InterceptedBy``3(Autofac.Builder.IRegistrationBuilder{``0,``1,``2},System.Type[])">
<summary>
Allows a list of interceptor services to be assigned to the registration.
</summary>
<typeparam name="TLimit">Registration limit type.</typeparam>
<typeparam name="TActivatorData">Activator data type.</typeparam>
<typeparam name="TStyle">Registration style.</typeparam>
<param name="builder">Registration to apply interception to.</param>
<param name="interceptorServiceTypes">The types of the interceptor services.</param>
<returns>Registration builder allowing the registration to be configured.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="builder"/> or <paramref name="interceptorServiceTypes"/>.</exception>
</member>
<member name="T:Autofac.Extras.DynamicProxy.RegistrationExtensionsResources">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:Autofac.Extras.DynamicProxy.RegistrationExtensionsResources.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:Autofac.Extras.DynamicProxy.RegistrationExtensionsResources.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member>
<member name="P:Autofac.Extras.DynamicProxy.RegistrationExtensionsResources.InterfaceNotSupportedByTransparentProxy">
<summary>
Looks up a localized string similar to The transparent proxy does not support the additional interface(s): {0}..
</summary>
</member>
<member name="P:Autofac.Extras.DynamicProxy.RegistrationExtensionsResources.InterfaceProxyingOnlySupportsInterfaceServices">
<summary>
Looks up a localized string similar to The component {0} cannot use interface interception as it provides services that are not publicly visible interfaces. Check your registration of the component to ensure you&apos;re not enabling interception and registering it as an internal/private interface type..
</summary>
</member>
<member name="P:Autofac.Extras.DynamicProxy.RegistrationExtensionsResources.TransparentProxyIsNotInterface">
<summary>
Looks up a localized string similar to The transparent proxy of type &apos;{0}&apos; must be an interface..
</summary>
</member>
<member name="P:Autofac.Extras.DynamicProxy.RegistrationExtensionsResources.TypeIsNotTransparentProxy">
<summary>
Looks up a localized string similar to The instance of type &apos;{0}&apos; is not a transparent proxy..
</summary>
</member>
</members>
</doc>

View File

@@ -1,57 +0,0 @@
Apache License, Version 2.0
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
1. You must give any other recipients of the Work or Derivative Works a copy of this License; and
2. You must cause any modified files to carry prominent notices stating that You changed the files; and
3. You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
4. If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS

View File

@@ -1,360 +0,0 @@
# Castle Core Changelog
## 4.3.1 (2018-06-21)
Enhancements:
- Use shared read locking to reduce lock contention in InvocationHelper and ProxyUtil (@TimLovellSmith, #377)
Bugfixes:
- Prevent interceptors from being able to modify `in` parameters (@stakx, #370)
- Make default value replication of optional parameters more tolerant of default values that are represented in metadata with a mismatched type (@stakx, #371)
- Fix a concurrency issue (writing without taking a write lock first) in `BaseProxyGenerator.ObtainProxyType` (@stakx, #383)
Deprecations:
- `Castle.DynamicProxy.Generators.Emitters.ArgumentsUtil.IsAnyByRef` (@stakx, #370)
## 4.3.0 (2018-06-07)
Enhancements:
- Added .NET Standard/.NET Core support for NLog (@snakefoot, #200)
- Added .NET Standard/.NET Core support for log4net (@snakefoot, #201)
- DynamicProxy supported C# `in` parameter modifiers only on the .NET Framework up until now. Adding .NET Standard 1.5 as an additional target to the NuGet package makes them work on .NET Core, too (@stakx, #339)
- Replicate custom attributes on constructor parameters in the generated proxy type constructors to fulfill introspection of constructors. This does not change the proxying behavior. (@stakx, #341)
- Improve performance of InvocationHelper cache lookups (@tangdf, #358)
- Improve fidelity of default value replication of optional parameters to fulfill inspection of the generated proxies. This does not change the proxying behavior. (@stakx, #356)
- Improve cache performance of MethodFinder.GetAllInstanceMethods (@tangdf, #357)
Bugfixes:
- Fix Castle.Services.Logging.Log4netIntegration assembly file name casing which breaks on Linux (@beginor, #324)
- Fix Castle.DynamicProxy.Generators.AttributesToAvoidReplicating not being thread safe (InvalidOperationException "Collection was modified; enumeration operation may not execute.") (@BrunoJuchli, #334)
- Fix TraceLoggerFactory to allow specifying the default logger level (@acjh, #342)
- Ensure that DynamicProxy doesn't create invalid dynamic assemblies when proxying types from non-strong-named assemblies (@stakx, #327)
- Fix interceptor selectors being passed `System.RuntimeType` for class proxies instead of the target type (@stakx, #359)
- Replace NullReferenceException with descriptive one thrown when interceptors swallow exceptions and cause a null value type to be returned (@jonorossi, #85)
## 4.2.1 (2017-10-11)
Bugfixes:
- Add missing equality checks in `MethodSignatureComparer.EqualSignatureTypes` to fix `TypeLoadException`s ("Method does not have an implementation") (@stakx, #310)
- Add missing XML documentation files to NuGet packages (@fir3pho3nixx, #312)
## 4.2.0 (2017-09-28)
Enhancements:
- Add IProxyTargetAccessor.DynProxySetTarget to set the target of a proxy (@yallie, #293)
- Internal dynamic proxy fields are now private instead of public (@spencercw, #260)
Bugfixes:
- Make ProxyUtil.IsAccessible(MethodBase) take into account declaring type's accessibility so it doesn't report false negatives for e.g. public methods in inaccessible classes. (@stakx, #289)
- Fix InvalidCastException calling IChangeProxyTarget.ChangeProxyTarget proxying generic interfaces (@yallie, #293)
- Ignore minor/patch level version for AssemblyVersionAttribute as this creates binding errors for downstream libraries (@fir3pho3nixx, #288)
- Fix DictionaryAdapter firing NotifyPropertyChang(ed/ing) events after CancelEdit (@Lakritzator, #299)
- Fix ArgumentException when overriding method with nested generics (@BitWizJason, #297)
- Explicit package versioning applied within solution to avoid maligned NuGet upgrades for lock step versioned packages. (@fir3pho3nixx, #292)
Deprecations:
- IChangeProxyTarget.ChangeProxyTarget is deprecated in favor of IProxyTargetAccessor.DynProxySetTarget (@yallie, #293)
## 4.1.1 (2017-07-12)
Bugfixes:
- Prevent member name collision when proxy implements same generic interface more than twice (@stakx, #88)
- Fix incorrect replication (reversed order) of custom modifiers (modopts and modreqs) on the CLR, does not work yet on Mono (@stakx, #277)
- Fix COM interface proxy error case throwing exceptions trying to release null pointer from QueryInterface (@stakx, #281)
## 4.1.0 (2017-06-11)
Breaking Changes:
- Remove AllowPartiallyTrustedCallersAttribute, which wasn't defined by default (@fir3pho3nixx, #241)
- Upgrade log4net to v2.0.8 (@fir3pho3nixx, #241)
Enhancements:
- Add ProxyUtil.IsAccessible to check if a method is accessible to DynamicProxyGenAssembly2 (Blair Conrad, #235)
- Refactor build engineering to support AppVeyor and TravisCI (@fir3pho3nixx, #241)
Bugfixes:
- Fix order of class proxy constructor arguments when using multiple mixins (@sebastienros, #230)
- Fix dependency on "System.ComponentModel.TypeConverter" NuGet package version that does not exist (#239)
- Fix ParamArrayAttribute not being replicated in proxy (@stakx, #121)
- Fix System.Net.Mail.SmtpClient is obsolete on Mono warning (#254)
## 4.0.0 (2017-01-25)
Breaking Changes:
- Update to NLog 4.4.1 and remove beta .NET Core support for NLog (#228)
- Update to log4net 2.0.7 (#229)
Bugfixes:
- Fix CustomAttributeInfo.FromExpression for VB.NET (@thomaslevesque, #223)
## 4.0.0-beta002 (2016-10-28)
Breaking Changes:
- Rework Serilog integration to accept an ILogger rather than a LoggerConfiguration to work correctly with Serilog (#142, #211)
- Remove obsolete property `AttributesToAddToGeneratedTypes` from `ProxyGenerationOptions` (#219)
- Change type of `ProxyGenerationOptions.AdditionalAttributes` to `IList<CustomAttributeInfo>` (#219)
- Remove `IAttributeDisassembler` which is no longer necessary (#219)
Enhancements:
- Add IProxyGenerator interface for the ProxyGenerator class (#215)
- Improve default list of attributes to avoid replicating. Code Access Security attributes and MarshalAsAttribute will no longer be replicated (#221)
Bugfixes:
- Fix building on Mono 4.6.1
- Different attributes in `ProxyGenerationOptions.AdditionalAttributes` now generates different proxy types (#219)
## 4.0.0-beta001 (2016-07-17)
Breaking Changes:
- Update to log4net 1.2.15/2.0.5 (#199)
- Update to NLog 4.4.0-beta13 (#199)
- Update to Serilog 2.0.0 (#199)
Enhancements:
- .NET Core 1.0 and .NET Standard 1.3 support (Jonathon Rossi, Jeremy Meng)
- Restore DynamicDictionary class
Bugfixes:
- Fix target framework moniker in NuGet package for .NET Core (#174)
## 4.0.0-alpha001 (2016-04-07)
Breaking Changes:
- Remove all Silverlight support (#100, #150)
- Remove DynamicProxy's RemotableInvocation and remoting support for invocations (#110, #65)
Enhancements:
- .NET Core DNX and dotnet5.4 support via feature conditional compilation (Jonathon Rossi, Jeremy Meng)
- Build script improvements and consolidate version numbers (Blair Conrad, #75, #152, #153)
Bugfixes:
- Fix 'System.ArgumentException: Constant does not match the defined type' with optional, nullable enum method parameters (Daniel Yankowsky, #141, #149)
- Fix proxy generation hook notification for virtual but final methods (Axel Heer, #148)
- Fix InvalidCastException with custom attribute having an enum array parameter with non-int enum (@csharper2010, #104, #105)
- Update to Mono 4.0.2 and improve Mono support (#79, #95, #102)
- Fix 'System.ArrayTypeMismatchException: Source array type cannot be assigned to destination array type' on Mono (#81)
- Fix 'System.ArgumentException: System.Decimal is not a supported constant type' with optional method parameters (@fknx, #87, #91)
- Fix ProxyGenerator cache does not take into account AdditionalAttributes (@cmerat, #77, #78)
- Fix Castle.Services.Logging.SerilogIntegration.dll missing some assembly info attributes (@imzshh, #20, #82)
## 3.3.3 (2014-11-06)
- Fix Serilog integration modifies LoggerConfiguration.MinimumLevel (#70)
- Add SourceContext to the Serilog logger (@KevivL, #69)
## 3.3.2 (2014-11-03)
- fixed #66 - SerilogLogger implementation bug where exceptions were passed through incorrectly
## 3.3.1 (2014-09-10)
- implemented #61 - Added support for Serilog - contributed by Russell J Baker (@ruba1987)
## 3.3.0 (2014-04-27)
- implemented #51 - removed abandoned projects: Binder, Pagination, Validator
- implemented #49 - build NuGet and Zip packages from TeamCity - contributed by Blair Conrad (@blairconrad)
- implemented #42 - move complicated BuildInternalsVisibleMessageForType method out of DynamicProxyBuilder - contributed by Blair Conrad (@blairconrad)
- fixed #47 - Calling DynamicProxy proxy methods with multidimensional array parameters - contributed by Ed Parcell (@edparcell)
- fixed #44 - DictionaryAdapter FetchAttribute on type has no effect
- fixed #34 and #39 - inaccessible type parameters should give better error messages - contributed by Blair Conrad (@blairconrad)
## 3.2.2 (2013-11-30)
- fixed #35 - ParameterBuilder.SetConstant fails when using a default value of null - contributed by (@jonasro)
## 3.2.1 (2013-10-05)
- fixed #32 - Improve configuration of SmtpClient in sync sending - contributed by Artur Dorochowicz (@ArturDorochowicz)
- fixed #31 - [DynamicProxy] Preserve DefaultValues of proxied method's parameters (in .NET 4.5)
- fixed #30 - tailoring InternalsVisibleTo message based on assembly of inaccessible type - contributed by Blair Conrad (@blairconrad)
- fixed #27 - Allow dynamic proxy of generic interfaces which have generic methods, under Mono 2.10.8 and Mono 3.0.6 - contributed by Iain Ballard (@i-e-b)
- fixed #26 - Proxy of COM class issue, reference count incremented - contributed by Jean-Claude Viau (@jcviau)
- fixed DYNPROXY-188 - CreateInterfaceProxyWithoutTarget fails with interface containing member with 'ref UIntPtr' - contributed by Pier Janssen (@Pjanssen)
- fixed DYNPROXY-186 - .Net remoting (transparent proxy) cannot be proxied - contributed by Jean-Claude Viau (@jcviau)
- fixed DYNPROXY-185 - ProxyUtil.GetUnproxiedInstance returns proxy object for ClassProxyWithTarget instead of its target - contributed by Dmitry Xlestkov (@d-s-x)
## 3.2.0 (2013-02-16)
- fixed DYNPROXY-179 - Exception when creating a generic proxy (from cache)
- fixed DYNPROXY-175 - invalid CompositionInvocation type used when code uses interface proxies with and without InterceptorSelector
## 3.1.0 (2012-08-05)
- fixed DYNPROXY-174 - Unable to cast object of type 'System.Collections.ObjectModel.ReadOnlyCollection\`1[System.Reflection.CustomAttributeTypedArgument]' to type 'System.Array'
## 3.1.0 RC (2012-07-08)
- support multiple inheritance of DA attributes on interfaces.
- BREAKING CHANGE: removed propagated child notifications as it violated INotifyPropertyChanged contract
- improved DictionaryAdapter performance
- generalized IBindingList support for DictionaryAdapters
- added reference support to XmlAdapter
- BREAKING CHANGE: refactored XPathAdapter into XmlAdapter with much more flexibility to support other input like XLinq
- implemented CORE-43 - Add option to skip configuring log4net/nlog
- fixed CORE-44 - NLog logger does not preserver call site info
- fixed DYNPROXY-171 - PEVerify error on generic method definition
- fixed DYNPROXY-170 - Calls to properties inside non-intercepted methods are not forwarded to target object (regression from v2.5)
- fixed DYNPROXY-169 - Support IChangeProxyTarget on additional interfaces and mixins when using CreateInterfaceProxyWithTargetInterface
## 3.0.0 (2011-12-13)
- no major changes since RC
## 3.0.0 RC 1 (2011-11-20)
- Applied Jeff Sharps patch that refactored Xml DictionaryAdapter to improve maintainability and enable more complete functionality
- fixed DYNPROXY-165 - Object.GetType() and Object.MemberwiseClone() should be ignored and not reported as non-interceptable to IProxyGenerationHook
- fixed DYNPROXY-164 - Invalid Proxy type generated when there are more than one base class generic constraints
- fixed DYNPROXY-162 - ref or out parameters can not be passed back if proxied method throw an exception
## 3.0.0 beta 1 (2011-08-14)
Breaking Changes:
* Removed overloads of logging methods that were taking format string from ILogger and ILogger and IExtendedLogger and didn't have word Format in their name.
* For example:
* void Error(string format, params object[] args); // was removed
* void ErrorFormat(string format, params object[] args); //use this one instead
* impact - low
* fixability - medium
* description - To minimize confusion and duplication those methods were removed.
* fix - Use methods that have explicit "Format" word in their name and same signature.
* Removed WebLogger and WebLoggerFactory
* impact - low
* fixability - medium
* description - To minimize management overhead the classes were removed so that only single Client Profile version of Castle.Core can be distributed.
* fix - You can use NLog or Log4Net web logger integration, or reuse implementation of existing web logger and use it as a custom logger.
* Removed obsolete overload of ProxyGenerator.CreateClassProxy
* impact - low
* fixability - trivial
* description - Deprecated overload of ProxyGenerator.CreateClassProxy was removed to keep the method consistent with other methods and to remove confusion
* fix - whenever removed overload was used, use one of the other overloads.
* IProxyGenerationHook.NonVirtualMemberNotification method was renamed
* impact - high
* fixability - easy
* description - to accommodate class proxies with target method NonVirtualMemberNotification on IProxyGenerationHook type was renamed to more accurate
NonProxyableMemberNotification since for class proxies with target not just methods but also fields and other member that break the abstraction will
be passed to this method.
* fix - whenever NonVirtualMemberNotification is used/implemented change the method name to
NonProxyableMemberNotification. Implementors should also accommodate possibility that not
only MethodInfos will be passed as method's second parameter.
* DynamicProxy will now allow to intercept members of System.Object
* impact - very low
* fixability - easy
* description - to allow scenarios like mocking of System.Object members, DynamicProxy will not
disallow proxying of these methods anymore. AllMethodsHook (default IProxyGenerationHook)
will still filter them out though.
* fix - whenever custom IProxyGenerationHook is used, user should account for System.Object's
members being now passed to ShouldInterceptMethod and NonVirtualMemberNotification methods
and if necessary update the code to handle them appropriately.
Bugfixes:
- fixed CORE-37 - TAB characters in the XML Configuration of a component parameter is read as String.Empty
- fixed DYNPROXY-161 - Strong Named DynamicProxy Assembly Not Available in Silverlight
- fixed DYNPROXY-159 - Sorting MemberInfo array for serialization has side effects
- fixed DYNPROXY-158 - Can't create class proxy with target and without target in same ProxyGenerator
- fixed DYNPROXY-153 - When proxying a generic interface which has an interface as GenericType . No proxy can be created
- fixed DYNPROXY-151 - Cast error when using attributes
- implemented CORE-33 - Add lazy logging
- implemented DYNPROXY-156 - Provide mechanism for interceptors to implement retry logic
- removed obsolete members from ILogger and its implementations
## 2.5.2 (2010-11-15)
- fixed DYNPROXY-150 - Finalizer should not be proxied
- implemented DYNPROXY-149 - Make AllMethodsHook members virtual so it can be used as a base class
- fixed DYNPROXY-147 - Can't create class proxies with two non-public methods having same argument types but different return type
- fixed DYNPROXY-145 Unable to proxy System.Threading.SynchronizationContext (.NET 4.0)
- fixed DYNPROXY-144 - params argument not supported in constructor
- fixed DYNPROXY-143 - Permit call to reach "non-proxied" methods of inherited interfaces
- implemented DYNPROXY-139 - Better error message
- fixed DYNPROXY-133 - Debug assertion in ClassProxyInstanceContributor fails when proxying ISerializable with an explicit implementation of GetObjectData
- fixed CORE-32 - Determining if permission is granted via PermissionUtil does not work in .NET 4
- applied patch by Alwin Meijs - ExtendedLog4netFactory can be configured with a stream from for example an embedded log4net xml config
- Upgraded NLog to 2.0 Beta 1
- Added DefaultXmlSerializer to bridge XPathAdapter with standard Xml Serialization.
- XPathAdapter for DictionaryAdapter added IXPathSerializer to provide hooks for custom serialization.
## 2.5.1 (2010-09-21)
- Interface proxy with target Interface now accepts null as a valid target value (which can be replaced at a later stage).
- DictionaryAdapter behavior overrides are now ordered with all other behaviors
- BREAKING CHANGE: removed web logger so that by default Castle.Core works in .NET 4 client profile
- added parameter to ModuleScope disabling usage of signed modules. This is to workaround issue DYNPROXY-134. Also a descriptive exception message is being thrown now when the issue is detected.
- Added IDictionaryBehaviorBuilder to allow grouping behaviors
- Added GenericDictionaryAdapter to simplify generic value sources
- fixed issue DYNPROXY-138 - Error message missing space
- fixed false positive where DynamicProxy would not let you proxy interface with target interface when target object was a COM object.
- fixed ReflectionBasedDictionaryAdapter when using indexed properties
## 2.5.0 (2010-08-21)
- DynamicProxy will now not replicate non-public attribute types
- Applied patch from Kenneth Siewers Møller which adds parameterless constructor to DefaultSmtpSender implementation, to be able to configure the inner SmtpClient from the application configuration file (system.net.smtp).
- added support for .NET 4 and Silverlight 4, updated solution to VisualStudio 2010
- Removed obsolete overload of CreateClassProxy
- Added class proxy with target
- Added ability to intercept explicitly implemented generic interface methods on class proxy.
- DynamicProxy does not disallow intercepting members of System.Object anymore. AllMethodsHook will still filter them out though.
- Added ability to intercept explicitly implemented interface members on class proxy. Does not support generic members.
- Merged DynamicProxy into Core binary
- fixed DYNPROXY-ISSUE-132 - "MetaProperty equals implementation incorrect"
- Fixed bug in DiagnosticsLoggerTestCase, where when running as non-admin, the teardown will throw SecurityException (contributed by maxild)
- Split IoC specific classes into Castle.Windsor project
- Merged logging services solution
- Merged DynamicProxy project
## 1.2.0 (2010-01-11)
- Added IEmailSender interface and its default implementation
## 1.2.0 beta (2009-12-04)
- BREAKING CHANGE - added ChangeProxyTarget method to IChangeProxyTarget interface
- added docs to IChangeProxyTarget methods
- Fixed DYNPROXY-ISSUE-108 - Obtaining replicated custom attributes on proxy may fail when property setter throws exception on default value
- Moved custom attribute replication from CustomAttributeUtil to new interface - IAttributeDisassembler
- Exposed IAttributeDisassembler via ProxyGenerationOptions, so that users can plug their implementation for some convoluted scenarios. (for Silverlight)
- Moved IInterceptorSelector from Dynamic Proxy to Core (IOC-ISSUE-156)
## 1.1.0 (2009-05-04)
- Applied Eric Hauser's patch fixing CORE-ISSUE-22
"Support for environment variables in resource URI"
- Applied Gauthier Segay's patch fixing CORE-ISSUE-20
"Castle.Core.Tests won't build via nant because it use TraceContext without referencing System.Web.dll"
- Added simple interface to ComponentModel to make optional properties required.
- Applied Mark's -- <mwatts42@gmail.com> -- patch that changes
the Core to support being compiled for Silverlight 2
- Applied Louis DeJardin's patch adding TraceLogger as a new logger implementation
- Applied Chris Bilson's patch fixing CORE-15
"WebLogger Throws When Logging Outside of an HttpContext"
## Release Candidate 3
- Added IServiceProviderEx which extends IServiceProvider
- Added Pair<T,S> class.
- Applied Bill Pierce's patch fixing CORE-9
"Allow CastleComponent Attribute to Specify Lifestyle in Constructor"
- Added UseSingleInterfaceProxy to CompomentModel to control the proxying
behavior while maintaining backward compatibility.
Added the corresponding ComponentProxyBehaviorAttribute.
- Made NullLogger and IExtnededLogger
- Enabled a new format on ILogger interface, with 6 overloads for each method:
- Debug(string)
- Debug(string, Exception)
- Debug(string, params object[])
- DebugFormat(string, params object[])
- DebugFormat(Exception, string, params object[])
- DebugFormat(IFormatProvider, string, params object[])
- DebugFormat(IFormatProvider, Exception, string, params object[])
- The "FatalError" overloads where marked as [Obsolete], replaced by "Fatal" and "FatalFormat".
## 0.0.1.0
- Included IProxyTargetAccessor
- Removed IMethodInterceptor and IMethodInvocation, that have been replaced by IInterceptor and IInvocation
- Added FindByPropertyInfo to PropertySetCollection
- Made the DependencyModel.IsOptional property writable
- Applied Curtis Schlak's patch fixing IOC-27
"assembly resource format only works for resources where the assemblies name and default namespace are the same."
Quoting:
"I chose to preserve backwards compatibility by implementing the code in the
reverse order as suggested by the reporter. Given the following URI for a resource:
assembly://my.cool.assembly/context/moo/file.xml
It will initially look for an embedded resource with the manifest name of
"my.cool.assembly.context.moo.file.xml" in the loaded assembly my.cool.assembly.dll.
If it does not find it, then it looks for the embedded resource with the manifest name
of "context.moo.file.xml".
- IServiceEnabledComponent Introduced to be used across the project as
a standard way to have access to common services, for example, logger factories
- Added missing log factories
- Refactor StreamLogger and DiagnosticLogger to be more consistent behavior-wise
- Refactored WebLogger to extend LevelFilteredLogger (removed duplication)
- Refactored LoggerLevel order
- Project started

View File

@@ -1,13 +0,0 @@
Copyright 2004-2016 Castle Project - http://www.castleproject.org/
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1,10 +0,0 @@
Thanks for downloading this Castle package.
You can find full list of changes in CHANGELOG.md
Documentation (work in progress, contributions appreciated):
DictionaryAdapter: https://github.com/castleproject/Core/blob/master/docs/dictionaryadapter.md
DynamicProxy: https://github.com/castleproject/Core/blob/master/docs/dynamicproxy.md
Discussion group: http://groups.google.com/group/castle-project-users
StackOverflow tags: castle-dynamicproxy, castle-dictionaryadapter, castle
Issue tracker: https://github.com/castleproject/Core/issues

View File

@@ -0,0 +1,3 @@
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<s:Boolean x:Key="/Default/CodeStyle/Naming/CSharpAutoNaming/IsNamingAutoDetectionCompleted/@EntryValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeStyle/Naming/CSharpAutoNaming/IsNotificationDisabled/@EntryValue">True</s:Boolean></wpf:ResourceDictionary>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff