基本信息
源码名称:MidiatR使用例子
源码大小:0.15M
文件格式:.zip
开发语言:C#
更新时间:2022-06-01
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559

本次赞助数额为: 2 元 
   源码介绍
MidiatR使用例子


.
├── MediatR-master
│   ├── Build.ps1
│   ├── BuildContracts.ps1
│   ├── Directory.Build.props
│   ├── LICENSE
│   ├── MediatR.sln
│   ├── MediatR.snk
│   ├── NuGet.Config
│   ├── Push.ps1
│   ├── README.md
│   ├── assets
│   │   └── logo
│   │       ├── flat_128x128.png
│   │       ├── flat_32x32.png
│   │       ├── flat_64x64.png
│   │       ├── gradient_128x128.png
│   │       ├── gradient_32x32.png
│   │       └── gradient_64x64.png
│   ├── samples
│   │   ├── MediatR.Examples
│   │   │   ├── ConstrainedRequestPostProcessor.cs
│   │   │   ├── ExceptionHandler
│   │   │   │   ├── Exceptions.cs
│   │   │   │   ├── ExceptionsHandlers.cs
│   │   │   │   ├── ExceptionsHandlersOverrides.cs
│   │   │   │   ├── Handlers.cs
│   │   │   │   ├── LogExceptionAction.cs
│   │   │   │   ├── Requests.cs
│   │   │   │   └── RequestsOverrides.cs
│   │   │   ├── GenericHandler.cs
│   │   │   ├── GenericPipelineBehavior.cs
│   │   │   ├── GenericRequestPostProcessor.cs
│   │   │   ├── GenericRequestPreProcessor.cs
│   │   │   ├── Jing.cs
│   │   │   ├── JingHandler.cs
│   │   │   ├── MediatR.Examples.csproj
│   │   │   ├── Ping.cs
│   │   │   ├── PingHandler.cs
│   │   │   ├── Pinged.cs
│   │   │   ├── PingedHandler.cs
│   │   │   ├── Pong.cs
│   │   │   ├── Ponged.cs
│   │   │   ├── Runner.cs
│   │   │   └── Streams
│   │   │       ├── GenericStreamPipelineBehavior.cs
│   │   │       ├── Sing.cs
│   │   │       ├── SingHandler.cs
│   │   │       └── Song.cs
│   │   ├── MediatR.Examples.AspNetCore
│   │   │   ├── MediatR.Examples.AspNetCore.csproj
│   │   │   └── Program.cs
│   │   ├── MediatR.Examples.Autofac
│   │   │   ├── MediatR.Examples.Autofac.csproj
│   │   │   └── Program.cs
│   │   ├── MediatR.Examples.DryIoc
│   │   │   ├── MediatR.Examples.DryIoc.csproj
│   │   │   └── Program.cs
│   │   ├── MediatR.Examples.DryIocZero
│   │   │   ├── Container.Generated.cs
│   │   │   ├── Container.Generated.tt
│   │   │   ├── Container.cs
│   │   │   ├── ImTools.cs
│   │   │   ├── MediatR.Examples.DryIocZero.csproj
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   └── launchSettings.json
│   │   │   └── Registrations.ttinclude
│   │   ├── MediatR.Examples.Lamar
│   │   │   ├── MediatR.Examples.Lamar.csproj
│   │   │   └── Program.cs
│   │   ├── MediatR.Examples.LightInject
│   │   │   ├── MediatR.Examples.LightInject.csproj
│   │   │   └── Program.cs
│   │   ├── MediatR.Examples.Ninject
│   │   │   ├── ContravariantBindingResolver.cs
│   │   │   ├── MediatR.Examples.Ninject.csproj
│   │   │   └── Program.cs
│   │   ├── MediatR.Examples.PublishStrategies
│   │   │   ├── AsyncPingedHandler.cs
│   │   │   ├── CustomMediator.cs
│   │   │   ├── MediatR.Examples.PublishStrategies.csproj
│   │   │   ├── Program.cs
│   │   │   ├── PublishStrategy.cs
│   │   │   ├── Publisher.cs
│   │   │   └── SyncPingedHandler.cs
│   │   ├── MediatR.Examples.SimpleInjector
│   │   │   ├── MediatR.Examples.SimpleInjector.csproj
│   │   │   └── Program.cs
│   │   ├── MediatR.Examples.Stashbox
│   │   │   ├── MediatR.Examples.Stashbox.csproj
│   │   │   └── Program.cs
│   │   ├── MediatR.Examples.StructureMap
│   │   │   ├── MediatR.Examples.StructureMap.csproj
│   │   │   └── Program.cs
│   │   ├── MediatR.Examples.Unity
│   │   │   ├── MediatR.Examples.Unity.csproj
│   │   │   └── Program.cs
│   │   └── MediatR.Examples.Windsor
│   │       ├── ContravariantFilter.cs
│   │       ├── MediatR.Examples.Windsor.csproj
│   │       └── Program.cs
│   ├── src
│   │   ├── MediatR
│   │   │   ├── IMediator.cs
│   │   │   ├── INotificationHandler.cs
│   │   │   ├── IPipelineBehavior.cs
│   │   │   ├── IPublisher.cs
│   │   │   ├── IRequestHandler.cs
│   │   │   ├── ISender.cs
│   │   │   ├── IStreamPipelineBehavior.cs
│   │   │   ├── IStreamRequestHandler.cs
│   │   │   ├── Internal
│   │   │   │   ├── HandlersOrderer.cs
│   │   │   │   └── ObjectDetails.cs
│   │   │   ├── MediatR.csproj
│   │   │   ├── Mediator.cs
│   │   │   ├── Pipeline
│   │   │   │   ├── IRequestExceptionAction.cs
│   │   │   │   ├── IRequestExceptionHandler.cs
│   │   │   │   ├── IRequestPostProcessor.cs
│   │   │   │   ├── IRequestPreProcessor.cs
│   │   │   │   ├── RequestExceptionActionProcessorBehavior.cs
│   │   │   │   ├── RequestExceptionHandlerState.cs
│   │   │   │   ├── RequestExceptionProcessorBehavior.cs
│   │   │   │   ├── RequestPostProcessorBehavior.cs
│   │   │   │   └── RequestPreProcessorBehavior.cs
│   │   │   ├── ServiceFactory.cs
│   │   │   └── Wrappers
│   │   │       ├── HandlerBase.cs
│   │   │       ├── NotificationHandlerWrapper.cs
│   │   │       ├── RequestHandlerWrapper.cs
│   │   │       └── StreamRequestHandlerWrapper.cs
│   │   └── MediatR.Contracts
│   │       ├── INotification.cs
│   │       ├── IRequest.cs
│   │       ├── IStreamRequest.cs
│   │       ├── MediatR.Contracts.csproj
│   │       └── Unit.cs
│   └── test
│       ├── MediatR.Benchmarks
│       │   ├── Benchmarks.cs
│       │   ├── DotTraceDiagnoser.cs
│       │   ├── MediatR.Benchmarks.csproj
│       │   └── Program.cs
│       └── MediatR.Tests
│           ├── CreateStreamTests.cs
│           ├── ExceptionTests.cs
│           ├── GenericTypeConstraintsTests.cs
│           ├── MediatR.Tests.csproj
│           ├── NotificationHandlerTests.cs
│           ├── Pipeline
│           │   ├── RequestExceptionActionTests.cs
│           │   ├── RequestExceptionHandlerTests.cs
│           │   ├── RequestPostProcessorTests.cs
│           │   ├── RequestPreProcessorTests.cs
│           │   └── Streams
│           │       └── StreamPipelineBehaviorTests.cs
│           ├── PipelineTests.cs
│           ├── PublishTests.cs
│           ├── RequestHandlerTests.cs
│           ├── RequestHandlerUnitTests.cs
│           ├── SendTests.cs
│           ├── SendVoidInterfaceTests.cs
│           ├── ServiceFactoryTests.cs
│           ├── StreamPipelineTests.cs
│           └── UnitTests.cs
└── MidiatR使用例子_MediatR-master.zip

32 directories, 135 files