Extend the SoapCore pipeline
developYou can extend the SoapCore pipeline by registering additional components in ConfigureServices:
services.AddSoapMessageInspector(): Adds a customMessageInspector(similar to WCF'sIDispatchMessageInspector).services.AddSingleton<MyOperatorInvoker>(): Adds a customOperationInvokerto override service operation invocation (e.g., for logging or exception handling).services.AddSoapMessageProcessor(): Adds a customSoapMessageProcessormiddleware to inspect or modify messages andHttpContexton the way in and out.