16 instantiations of ScopedMessagePartSpecification
dotnet-svcutil-lib (16)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\ChannelProtectionRequirements.cs (16)
23
_incomingSignatureParts = new
ScopedMessagePartSpecification
();
24
_incomingEncryptionParts = new
ScopedMessagePartSpecification
();
25
_outgoingSignatureParts = new
ScopedMessagePartSpecification
();
26
_outgoingEncryptionParts = new
ScopedMessagePartSpecification
();
42
_incomingSignatureParts = new
ScopedMessagePartSpecification
(other._incomingSignatureParts);
43
_incomingEncryptionParts = new
ScopedMessagePartSpecification
(other._incomingEncryptionParts);
44
_outgoingSignatureParts = new
ScopedMessagePartSpecification
(other._outgoingSignatureParts);
45
_outgoingEncryptionParts = new
ScopedMessagePartSpecification
(other._outgoingEncryptionParts);
53
_incomingSignatureParts = new
ScopedMessagePartSpecification
(other._incomingSignatureParts, newBodyProtectionLevel != ProtectionLevel.None);
54
_incomingEncryptionParts = new
ScopedMessagePartSpecification
(other._incomingEncryptionParts, newBodyProtectionLevel == ProtectionLevel.EncryptAndSign);
55
_outgoingSignatureParts = new
ScopedMessagePartSpecification
(other._outgoingSignatureParts, newBodyProtectionLevel != ProtectionLevel.None);
56
_outgoingEncryptionParts = new
ScopedMessagePartSpecification
(other._outgoingEncryptionParts, newBodyProtectionLevel == ProtectionLevel.EncryptAndSign);
146
result._incomingSignatureParts = new
ScopedMessagePartSpecification
(this.OutgoingSignatureParts);
147
result._outgoingSignatureParts = new
ScopedMessagePartSpecification
(this.IncomingSignatureParts);
148
result._incomingEncryptionParts = new
ScopedMessagePartSpecification
(this.OutgoingEncryptionParts);
149
result._outgoingEncryptionParts = new
ScopedMessagePartSpecification
(this.IncomingEncryptionParts);
18 references to ScopedMessagePartSpecification
dotnet-svcutil-lib (18)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ReliableSessionBindingElement.cs (2)
256
ScopedMessagePartSpecification
signaturePart,
257
ScopedMessagePartSpecification
encryptionPart,
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SecurityBindingElementImporter.cs (1)
206
private bool HasProtectionRequirements(
ScopedMessagePartSpecification
scopedParts)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\ChannelProtectionRequirements.cs (11)
15
private
ScopedMessagePartSpecification
_incomingSignatureParts;
16
private
ScopedMessagePartSpecification
_incomingEncryptionParts;
17
private
ScopedMessagePartSpecification
_outgoingSignatureParts;
18
private
ScopedMessagePartSpecification
_outgoingEncryptionParts;
59
public
ScopedMessagePartSpecification
IncomingSignatureParts
67
public
ScopedMessagePartSpecification
IncomingEncryptionParts
75
public
ScopedMessagePartSpecification
OutgoingSignatureParts
83
public
ScopedMessagePartSpecification
OutgoingEncryptionParts
119
private static void AddActionParts(
ScopedMessagePartSpecification
to,
ScopedMessagePartSpecification
from)
159
private static MessagePartSpecification UnionMessagePartSpecifications(
ScopedMessagePartSpecification
actionParts)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\ScopedMessagePartSpecification.cs (3)
48
public ScopedMessagePartSpecification(
ScopedMessagePartSpecification
other)
66
internal ScopedMessagePartSpecification(
ScopedMessagePartSpecification
other, bool newIncludeBody)
158
internal void CopyTo(
ScopedMessagePartSpecification
target)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecurityPolicy.cs (1)
1364
ScopedMessagePartSpecification
scopedParts;