We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
public class AutofacServiceProviderFactory : IServiceProviderFactory<ContainerBuilder> { public ContainerBuilder CreateBuilder(IServiceCollection services) { ContainerBuilder containerBuilder = new ContainerBuilder(); containerBuilder.Populate(services); containerBuilder.RegisterDynamicProxy(config => { config.EnableParameterAspect(); // 注释掉此行代码,即可正常推送数据到Skywalking 服务器上 }); return containerBuilder; } public IServiceProvider CreateServiceProvider(ContainerBuilder containerBuilder) { if (containerBuilder == null) throw new ArgumentNullException("containerBuilder"); return new AutofacServiceProvider(containerBuilder.Build()); } }
请问这是什么原因导致的
The text was updated successfully, but these errors were encountered:
No branches or pull requests
请问这是什么原因导致的
The text was updated successfully, but these errors were encountered: