-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Migration Guide 10.x to 11.0
Jimmy Bogard edited this page Sep 30, 2022
·
1 revision
This release contains breaking changes to interfaces using CancellationToken
. C# design guidelines recommend CancellationToken
parameters be placed last (CA1068). As such, these types were changed to conform to this rule:
IPipelineBehavior
IStreamPipelineBehavior
RequestExceptionActionProcessorBehavior
RequestExceptionProcessorBehavior
RequestPostProcessorBehavior
RequestPreProcessorBehavior
To fix these, move any implementations to have the CancellationToken
parameter last.