| | | 1 | | // Licensed to the .NET Foundation under one or more agreements. |
| | | 2 | | // The .NET Foundation licenses this file to you under the MIT license. |
| | | 3 | | |
| | | 4 | | using CoreWCF.Channels; |
| | | 5 | | using CoreWCF.Description; |
| | | 6 | | |
| | | 7 | | namespace CoreWCF.Security |
| | | 8 | | { |
| | | 9 | | internal class WSSecurityOneDotOneReceiveSecurityHeader : WSSecurityOneDotZeroReceiveSecurityHeader |
| | | 10 | | { |
| | | 11 | | public WSSecurityOneDotOneReceiveSecurityHeader(Message message, string actor, bool mustUnderstand, bool relay, |
| | | 12 | | SecurityStandardsManager standardsManager, |
| | | 13 | | SecurityAlgorithmSuite algorithmSuite, |
| | | 14 | | int headerIndex, MessageDirection direction) |
| | 88 | 15 | | : base(message, actor, mustUnderstand, relay, standardsManager, algorithmSuite, headerIndex, direction) |
| | | 16 | | { |
| | 88 | 17 | | } |
| | | 18 | | } |
| | | 19 | | } |