实例介绍
WeihanLi.Common是一个专为.NET开发者设计的基础类库,旨在提供一系列常用的工具类、公共方法和扩展方法等。该类库的主要特点包括:
- 依赖注入:提供了一个类似于微软依赖注入框架的自定义实现,帮助开发者更灵活地管理对象的生命周期。
- Fluent Aspects:基于动态代理技术实现的AOP(面向切面编程)框架,让开发者能够轻松地添加如日志、异常处理等横切关注点。
- 事件相关:提供了EventBus、EventQueue和EventStore等工具,简化了事件驱动编程的实现。
- 日志框架:结合了Serilog和微软日志框架的优点,提供了一个强大的日志记录解决方案。
- Ado.Net扩展:提供了类似Dapper的Ado.Net扩展,使数据库操作更加便捷。
- TOTP算法实现:内置了TOTP(基于时间的一次性密码算法)的实现,为应用增加了一层安全保障。
如果您是.NET开发者,并寻找提高开发效率和代码质量的工具,WeihanLi.Common值得您的关注。
【实例截图】
【核心代码】
文件清单
└── WeihanLi.Common-e79c564565b6485bc384a8aba5aef40798406440
├── azure-pipelines.yml
├── build
│ ├── build.cs
│ ├── getReleaseVersion.ps1
│ ├── sign.props
│ ├── version.props
│ └── weihanli.snk
├── build.ps1
├── build.sh
├── Directory.Build.props
├── Directory.Build.targets
├── Directory.Packages.props
├── docs
│ ├── api
│ │ └── index.md
│ ├── articles
│ │ ├── intro.md
│ │ └── toc.yml
│ ├── docfx.json
│ ├── index.md
│ ├── ReleaseNotes.md
│ └── toc.yml
├── global.json
├── icon.jpg
├── LICENSE
├── nuget.config
├── perf
│ └── WeihanLi.Common.Benchmark
│ ├── appsettings.json
│ ├── BenchmarkDotNet.Artifacts
│ │ └── results
│ │ ├── CreateInstanceTest-report.csv
│ │ ├── CreateInstanceTest-report-github.md
│ │ ├── CreateInstanceTest-report.html
│ │ ├── DITest-report.csv
│ │ ├── DITest-report-github.md
│ │ ├── DITest-report.html
│ │ ├── WeihanLi.Common.Benchmark.DITest-report.csv
│ │ ├── WeihanLi.Common.Benchmark.DITest-report-github.md
│ │ ├── WeihanLi.Common.Benchmark.DITest-report.html
│ │ ├── WeihanLi.Common.Benchmark.MapperTest-report.csv
│ │ ├── WeihanLi.Common.Benchmark.MapperTest-report-github.md
│ │ ├── WeihanLi.Common.Benchmark.MapperTest-report.html
│ │ ├── WeihanLi.Common.Benchmark.PipelineTest-report.csv
│ │ ├── WeihanLi.Common.Benchmark.PipelineTest-report-github.md
│ │ └── WeihanLi.Common.Benchmark.PipelineTest-report.html
│ ├── DITest.cs
│ ├── PipelineTest.cs
│ ├── Program.cs
│ └── WeihanLi.Common.Benchmark.csproj
├── README.md
├── samples
│ ├── AspNetCoreSample
│ │ ├── appsettings.json
│ │ ├── AspNetCoreSample.csproj
│ │ ├── bundleconfig.json
│ │ ├── Controllers
│ │ │ ├── EventsController.cs
│ │ │ └── HomeController.cs
│ │ ├── Events
│ │ │ ├── EventConsumer.cs
│ │ │ └── PageViewEvent.cs
│ │ ├── FluentAspectsServiceProviderFactory.cs
│ │ ├── LogInterceptor.cs
│ │ ├── Models
│ │ │ └── ErrorViewModel.cs
│ │ ├── Program.cs
│ │ ├── Startup.cs
│ │ ├── Views
│ │ │ ├── Home
│ │ │ │ ├── About.cshtml
│ │ │ │ ├── Contact.cshtml
│ │ │ │ └── Index.cshtml
│ │ │ ├── Shared
│ │ │ │ ├── Error.cshtml
│ │ │ │ ├── _Layout.cshtml
│ │ │ │ └── _ValidationScriptsPartial.cshtml
│ │ │ ├── _ViewImports.cshtml
│ │ │ └── _ViewStart.cshtml
│ │ └── wwwroot
│ │ ├── css
│ │ │ ├── site.css
│ │ │ └── site.min.css
│ │ ├── favicon.ico
│ │ ├── images
│ │ │ ├── banner1.svg
│ │ │ ├── banner2.svg
│ │ │ ├── banner3.svg
│ │ │ └── banner4.svg
│ │ ├── js
│ │ │ ├── site.js
│ │ │ └── site.min.js
│ │ └── lib
│ │ ├── bootstrap
│ │ │ ├── dist
│ │ │ │ ├── css
│ │ │ │ │ ├── bootstrap.css
│ │ │ │ │ ├── bootstrap.css.map
│ │ │ │ │ ├── bootstrap.min.css
│ │ │ │ │ ├── bootstrap.min.css.map
│ │ │ │ │ ├── bootstrap-theme.css
│ │ │ │ │ ├── bootstrap-theme.css.map
│ │ │ │ │ ├── bootstrap-theme.min.css
│ │ │ │ │ └── bootstrap-theme.min.css.map
│ │ │ │ ├── fonts
│ │ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ │ └── glyphicons-halflings-regular.woff2
│ │ │ │ └── js
│ │ │ │ ├── bootstrap.js
│ │ │ │ ├── bootstrap.min.js
│ │ │ │ └── npm.js
│ │ │ └── LICENSE
│ │ ├── jquery
│ │ │ ├── dist
│ │ │ │ ├── jquery.js
│ │ │ │ ├── jquery.min.js
│ │ │ │ └── jquery.min.map
│ │ │ └── LICENSE.txt
│ │ ├── jquery-validation
│ │ │ ├── dist
│ │ │ │ ├── additional-methods.js
│ │ │ │ ├── additional-methods.min.js
│ │ │ │ ├── jquery.validate.js
│ │ │ │ └── jquery.validate.min.js
│ │ │ └── LICENSE.md
│ │ └── jquery-validation-unobtrusive
│ │ ├── jquery.validate.unobtrusive.js
│ │ └── jquery.validate.unobtrusive.min.js
│ └── DotNetCoreSample
│ ├── App.config
│ ├── AppHostTest.cs
│ ├── appsettings.json
│ ├── AspectTest.cs
│ ├── Base64UrlEncodeTest.cs
│ ├── CommandExecutorTest.cs
│ ├── CronHelperTest.cs
│ ├── DataExtensionTest.cs
│ ├── DependencyInjectionTest.cs
│ ├── DisposeTest.cs
│ ├── DotNetCoreSample.csproj
│ ├── EventTest.cs
│ ├── GroupByEqualitySample.cs
│ ├── HttpRequesterTest.cs
│ ├── LoggerTest.cs
│ ├── MapperTest.cs
│ ├── NewtonJsonFormatter.cs
│ ├── PagedListResultTest.cs
│ ├── PipelineTest.cs
│ ├── ProcessExecutorTest.cs
│ ├── Program.cs
│ ├── RepositoryTest.cs
│ ├── RequestHelperTest.cs
│ ├── SerilogTest.cs
│ ├── ServiceDecoratorTest.cs
│ ├── TaskTest.cs
│ ├── TemplatingSample.cs
│ ├── Test
│ │ └── PagedListModel1.cs
│ └── TotpTest.cs
├── src
│ ├── Directory.Build.props
│ ├── WeihanLi.Common
│ │ ├── Abstractions
│ │ │ └── Properties.cs
│ │ ├── Aspect
│ │ │ ├── AspectDelegate.cs
│ │ │ ├── AspectInvokeException.cs
│ │ │ ├── AttributeInterceptorResolver.cs
│ │ │ ├── DefaultProxyFactory.cs
│ │ │ ├── DefaultProxyTypeFactory.cs
│ │ │ ├── DelegateInterceptor.cs
│ │ │ ├── FluentAspectOptions.cs
│ │ │ ├── FluentAspectOptionsExtensions.cs
│ │ │ ├── FluentAspectsBuilder.cs
│ │ │ ├── FluentAspects.cs
│ │ │ ├── FluentAspectsServiceContainerBuilder.cs
│ │ │ ├── FluentConfigInterceptorResolver.cs
│ │ │ ├── IInterceptionConfiguration.cs
│ │ │ ├── IInterceptor.cs
│ │ │ ├── IInterceptorResolver.cs
│ │ │ ├── IInvocation.cs
│ │ │ ├── InternalAspectHelper.cs
│ │ │ ├── InvocationEnricher.cs
│ │ │ ├── InvocationEnricherExtensions.cs
│ │ │ ├── IProxyFactory.cs
│ │ │ ├── IProxyTypeFactory.cs
│ │ │ ├── MethodSignature.cs
│ │ │ ├── ProxyFactoryExtensions.cs
│ │ │ ├── ProxyUtils.cs
│ │ │ ├── ServiceCollectionExtensions.cs
│ │ │ └── ServiceContainerBuilderExtensions.cs
│ │ ├── CacheUtil.cs
│ │ ├── Compressor
│ │ │ └── DataCompressor.cs
│ │ ├── Data
│ │ │ ├── Expressions
│ │ │ │ ├── DateTimeExpressionParser.cs
│ │ │ │ └── StringExpressionParser.cs
│ │ │ ├── IRepository.cs
│ │ │ ├── IUnitOfWork.cs
│ │ │ ├── Repository.cs
│ │ │ ├── RepositoryExtension.cs
│ │ │ ├── SqlExpressionParser.cs
│ │ │ ├── SqlExpressionVisitor.cs
│ │ │ └── UnitOfWork.cs
│ │ ├── DependencyInjection
│ │ │ ├── DependencyInjectionExtensions.cs
│ │ │ ├── FromServiceAttribute.cs
│ │ │ ├── ServiceConstructorAttribute.cs
│ │ │ ├── ServiceContainerBuilder.cs
│ │ │ ├── ServiceContainerBuilderExtensions.cs
│ │ │ ├── ServiceContainerBuilderExtensions.generated.cs
│ │ │ ├── ServiceContainerBuilderExtensions.tt
│ │ │ ├── ServiceContainer.cs
│ │ │ ├── ServiceContainerModule.cs
│ │ │ ├── ServiceDefinition.cs
│ │ │ └── ServiceLifetime.cs
│ │ ├── DependencyResolver.cs
│ │ ├── Event
│ │ │ ├── DelegateEventHandler.cs
│ │ │ ├── EventBase.cs
│ │ │ ├── EventBus.cs
│ │ │ ├── EventBusExtensions.cs
│ │ │ ├── EventHandler.cs
│ │ │ ├── EventHandlerFactory.cs
│ │ │ ├── EventQueueInMemory.cs
│ │ │ ├── EventQueuePublisher.cs
│ │ │ ├── EventStoreInMemory.cs
│ │ │ ├── EventSubscriptionManager.cs
│ │ │ ├── IEventBus.cs
│ │ │ ├── IEventHandlerFactory.cs
│ │ │ ├── IEventPublisher.cs
│ │ │ ├── IEventQueue.cs
│ │ │ ├── IEventStore.cs
│ │ │ └── IEventSubscriber.cs
│ │ ├── Extensions
│ │ │ ├── CollectionExtension.cs
│ │ │ ├── CompressionExtension.cs
│ │ │ ├── ConfigurationExtension.cs
│ │ │ ├── CoreExtension.cs
│ │ │ ├── CronExtension.cs
│ │ │ ├── DataExtension.cs
│ │ │ ├── DbCommandExtension.generated.cs
│ │ │ ├── DbCommandExtension.tt
│ │ │ ├── DbConnectionExtension.generated.cs
│ │ │ ├── DbConnectionExtension.tt
│ │ │ ├── DictionaryExtension.cs
│ │ │ ├── DumpExtension.cs
│ │ │ ├── EnumerableExtension.cs
│ │ │ ├── ExceptionExtension.cs
│ │ │ ├── ExpressionExtension.cs
│ │ │ ├── FuncExtension.cs
│ │ │ ├── HttpClientExtension.cs
│ │ │ ├── HttpRequesterExtension.cs
│ │ │ ├── ILGeneratorExtensions.cs
│ │ │ ├── IOExtension.cs
│ │ │ ├── JsonSerializeExtension.cs
│ │ │ ├── NetExtension.cs
│ │ │ ├── ProcessExtension.cs
│ │ │ ├── PropertiesExtensions.cs
│ │ │ ├── QueryableExtension.cs
│ │ │ ├── ReflectionExtension.cs
│ │ │ ├── ServiceCollectionExtension.cs
│ │ │ ├── StringExtension.cs
│ │ │ ├── TaskExtension.cs
│ │ │ └── TypeExtension.cs
│ │ ├── Guard.cs
│ │ ├── Helpers
│ │ │ ├── ActivatorHelper.cs
│ │ │ ├── ApplicationHelper.cs
│ │ │ ├── ArrayHelper.cs
│ │ │ ├── AsyncLock.cs
│ │ │ ├── Base32EncodeHelper.cs
│ │ │ ├── Base64UrlEncodeHelper.cs
│ │ │ ├── BoundedConcurrentQueue.cs
│ │ │ ├── Combinatorics
│ │ │ │ ├── Combinations.cs
│ │ │ │ ├── GenerateOption.cs
│ │ │ │ ├── Permutations.cs
│ │ │ │ ├── SmallPrimeUtility.cs
│ │ │ │ └── Variations.cs
│ │ │ ├── CommandExecutor.cs
│ │ │ ├── CommandLineParser.cs
│ │ │ ├── ConcurrentSet.cs
│ │ │ ├── ConsoleHelper.cs
│ │ │ ├── ConsoleOutput.cs
│ │ │ ├── ContextAccessor.cs
│ │ │ ├── ConvertHelper.cs
│ │ │ ├── Cron
│ │ │ │ ├── CalendarHelper.cs
│ │ │ │ ├── CronExpression.cs
│ │ │ │ ├── CronExpressionFlag.cs
│ │ │ │ ├── CronField.cs
│ │ │ │ ├── CronFormat.cs
│ │ │ │ ├── CronFormatException.cs
│ │ │ │ └── TimeZoneHelper.cs
│ │ │ ├── CronHelper.cs
│ │ │ ├── DataSerializer.cs
│ │ │ ├── DelegateHelper.cs
│ │ │ ├── DelegateTextWriter.cs
│ │ │ ├── DiagnosticHelper.cs
│ │ │ ├── DisposableHelper.cs
│ │ │ ├── Encoder.cs
│ │ │ ├── Enricher.cs
│ │ │ ├── EnumHelper.cs
│ │ │ ├── ExpressionHelper.cs
│ │ │ ├── HashHelper.cs
│ │ │ ├── Hosting
│ │ │ │ ├── AppHostBuilder.cs
│ │ │ │ ├── AppHostBuilderExtensions.cs
│ │ │ │ ├── AppHostBuilderSettings.cs
│ │ │ │ ├── AppHost.cs
│ │ │ │ ├── AppHostOptions.cs
│ │ │ │ ├── BackgroundService.cs
│ │ │ │ ├── CronBasedBackgroundService.cs
│ │ │ │ ├── IHostedService.cs
│ │ │ │ └── TimerBaseBackgroundService.cs
│ │ │ ├── HttpHelper.cs
│ │ │ ├── InterlockedHelper.cs
│ │ │ ├── Interop.cs
│ │ │ ├── InvokeHelper.cs
│ │ │ ├── JsonHelper.cs
│ │ │ ├── LogHelper.cs
│ │ │ ├── MapHelper.cs
│ │ │ ├── NetHelper.cs
│ │ │ ├── NewFuncHelper.cs
│ │ │ ├── PeriodBatching
│ │ │ │ ├── BatchedConnectionStatus.cs
│ │ │ │ ├── PeriodicBatching.cs
│ │ │ │ └── PortableTimer.cs
│ │ │ ├── PipelineBuilder.cs
│ │ │ ├── Pipelines
│ │ │ │ ├── AsyncPipelineBuilder.cs
│ │ │ │ ├── PipelineBuilder.cs
│ │ │ │ ├── PipelineBuilderExtensions.cs
│ │ │ │ ├── PipelineMiddleware.cs
│ │ │ │ └── ValueAsyncPipelineBuilder.cs
│ │ │ ├── ProcessExecutor.cs
│ │ │ ├── ProfilerHelper.cs
│ │ │ ├── ReflectHelper.cs
│ │ │ ├── RequestHelper.cs
│ │ │ ├── RetryHelper.cs
│ │ │ ├── SecurityHelper.cs
│ │ │ ├── SequentialGuidGenerator.cs
│ │ │ ├── StringHelper.cs
│ │ │ ├── TaskHelper.cs
│ │ │ ├── TotpHelper.cs
│ │ │ ├── TypeHelper.cs
│ │ │ ├── ValidateHelper.cs
│ │ │ └── ValueStopwatch.cs
│ │ ├── Http
│ │ │ ├── HttpHeaderNames.cs
│ │ │ ├── HttpRequester.cs
│ │ │ ├── IHttpRequester.cs
│ │ │ ├── JsonHttpContent.cs
│ │ │ ├── MockHttpHandler.cs
│ │ │ └── NoProxyHttpClientHandler.cs
│ │ ├── IDependencyResolver.cs
│ │ ├── Json
│ │ │ ├── DateTimeFormatConverter.cs
│ │ │ └── IPAddressConverter.cs
│ │ ├── Logging
│ │ │ ├── ConsoleLoggingProvider.cs
│ │ │ ├── LoggerGeneric.cs
│ │ │ ├── LoggingBuilder.cs
│ │ │ ├── LoggingEnricher.cs
│ │ │ ├── LoggingFormatter.cs
│ │ │ ├── LogHelperExtensions.cs
│ │ │ ├── LogHelperFactory.cs
│ │ │ ├── LogHelperLogger.cs
│ │ │ ├── LogHelperLoggerLevel.cs
│ │ │ ├── LogHelperLoggingEvent.cs
│ │ │ ├── LogHelperProvider.cs
│ │ │ ├── MicrosoftLoggingLoggerExtensions.cs
│ │ │ ├── MicrosoftLoggingLogHelperProvider.cs
│ │ │ └── PeriodBatchingLoggingService.cs
│ │ ├── Models
│ │ │ ├── BaseEntity.cs
│ │ │ ├── Category.cs
│ │ │ ├── DataOperationType.cs
│ │ │ ├── IdNameModel.cs
│ │ │ ├── KeyEntry.cs
│ │ │ ├── ModelValidator.cs
│ │ │ ├── PagedListResult.cs
│ │ │ ├── PagedRequest.cs
│ │ │ ├── Result.cs
│ │ │ ├── ResultStatus.cs
│ │ │ ├── ReviewState.cs
│ │ │ ├── SoftDeleteEntity.cs
│ │ │ ├── StringValueDictionary.cs
│ │ │ ├── TenantInfo.cs
│ │ │ └── ValidationResult.cs
│ │ ├── Otp
│ │ │ ├── OtpHashAlgorithm.cs
│ │ │ ├── Totp.cs
│ │ │ └── TotpOptions.cs
│ │ ├── README.md
│ │ ├── Resource.Designer.cs
│ │ ├── Resource.resx
│ │ ├── Services
│ │ │ ├── CancellationTokenProvider.cs
│ │ │ ├── IdGenerator.cs
│ │ │ ├── IProfiler.cs
│ │ │ ├── IScope.cs
│ │ │ ├── ITenantProvider.cs
│ │ │ ├── TotpService.cs
│ │ │ ├── UserIdProvider.cs
│ │ │ └── Validator.cs
│ │ ├── Template
│ │ │ ├── ConfigurationRenderMiddleare.cs
│ │ │ ├── DefaultRenderMiddleware.cs
│ │ │ ├── DefaultTemplateParser.cs
│ │ │ ├── DefaultTemplateRenderer.cs
│ │ │ ├── DependencyInjectionExtensions.cs
│ │ │ ├── EnvRenderMiddleware.cs
│ │ │ ├── IRenderMiddleware.cs
│ │ │ ├── ITemplateEngine.cs
│ │ │ ├── ITemplateParser.cs
│ │ │ ├── ITemplateRendererBuilder.cs
│ │ │ ├── ITemplateRenderer.cs
│ │ │ ├── TemplateEngine.cs
│ │ │ ├── TemplateEngineOptions.cs
│ │ │ ├── TemplateRenderContext.cs
│ │ │ └── TemplateRendererBuilder.cs
│ │ └── WeihanLi.Common.csproj
│ ├── WeihanLi.Common.Logging.Serilog
│ │ ├── README.md
│ │ ├── SerilogHelper.cs
│ │ ├── SerilogLogger.cs
│ │ ├── SerilogLoggerExtensions.cs
│ │ ├── SerilogLoggerProvider.cs
│ │ ├── SerilogLoggerScope.cs
│ │ ├── SerilogLogHelperProvider.cs
│ │ └── WeihanLi.Common.Logging.Serilog.csproj
│ └── WeihanLi.Extensions.Hosting
│ ├── CronBasedBackgroundService.cs
│ ├── HostingExtensions.cs
│ ├── README.md
│ ├── TimerBaseBackgroundService.cs
│ └── WeihanLi.Extensions.Hosting.csproj
├── test
│ └── WeihanLi.Common.Test
│ ├── AspectTest
│ │ ├── ProxyFactoryTest.cs
│ │ ├── ServiceCollectionBuildTest.cs
│ │ ├── ServiceContainerBuilderBuildTest.cs
│ │ └── TestOutputInterceptor.cs
│ ├── AsyncLockTest.cs
│ ├── CacheUtilTest.cs
│ ├── CompressorTest
│ │ └── DataCompressorTest.cs
│ ├── DependencyInjectionTest.cs
│ ├── DisposalTest.cs
│ ├── EventsTest
│ │ ├── EventBaseTest.cs
│ │ └── EventBusTest.cs
│ ├── ExtensionsTest
│ │ ├── CollectionExtensionTest.cs
│ │ ├── CompressExtensionTest.cs
│ │ ├── ConfigurationExtensionTest.cs
│ │ ├── CoreExtensionTest.cs
│ │ ├── EnumerableExtensionTest.cs
│ │ ├── ServiceCollectionExtensionTest.cs
│ │ ├── StringExtensionTest.cs
│ │ ├── TaskExtensionsTest.cs
│ │ └── TypeExtensionTest.cs
│ ├── HelpersTest
│ │ ├── BoundedConcurrentQueue.cs
│ │ ├── CommandExecutorTest.cs
│ │ ├── EncoderTest.cs
│ │ ├── EnumHelperTest.cs
│ │ ├── NetHelperTest.cs
│ │ ├── ProcessExecutorTest.cs
│ │ ├── SecurityHelperTest.cs
│ │ ├── StringHelperTest.cs
│ │ ├── TotpHelperTest.cs
│ │ └── ValidateHelperTest.cs
│ ├── HttpTest
│ │ └── MockHttpHandlerTest.cs
│ ├── IdGeneratorTest.cs
│ ├── JsonTest
│ │ └── JsonConvertTest.cs
│ ├── ModelsTest
│ │ ├── PagedListDataTest.cs
│ │ ├── PagedRequestTest.cs
│ │ ├── ResultTest.cs
│ │ ├── ReviewModelTest.cs
│ │ └── StringValueDictionaryTest.cs
│ ├── ProfilerTest.cs
│ ├── ServicesTest
│ │ ├── CancellationTokenProviderTest.cs
│ │ ├── TotpServiceTest.cs
│ │ └── UserIdProviderTest.cs
│ ├── TemplateTest
│ │ └── TemplateParserTest.cs
│ └── WeihanLi.Common.Test.csproj
├── toc.yml
├── WeihanLi.Common.sln
└── WeihanLi.Common.sln.DotSettings
71 directories, 432 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论