16 instantiations of ScopedMessagePartSpecification
System.ServiceModel (16)
System\ServiceModel\Security\ChannelProtectionRequirements.cs (16)
24
this.incomingSignatureParts = new
ScopedMessagePartSpecification
();
25
this.incomingEncryptionParts = new
ScopedMessagePartSpecification
();
26
this.outgoingSignatureParts = new
ScopedMessagePartSpecification
();
27
this.outgoingEncryptionParts = new
ScopedMessagePartSpecification
();
43
this.incomingSignatureParts = new
ScopedMessagePartSpecification
(other.incomingSignatureParts);
44
this.incomingEncryptionParts = new
ScopedMessagePartSpecification
(other.incomingEncryptionParts);
45
this.outgoingSignatureParts = new
ScopedMessagePartSpecification
(other.outgoingSignatureParts);
46
this.outgoingEncryptionParts = new
ScopedMessagePartSpecification
(other.outgoingEncryptionParts);
54
this.incomingSignatureParts = new
ScopedMessagePartSpecification
(other.incomingSignatureParts, newBodyProtectionLevel != ProtectionLevel.None);
55
this.incomingEncryptionParts = new
ScopedMessagePartSpecification
(other.incomingEncryptionParts, newBodyProtectionLevel == ProtectionLevel.EncryptAndSign);
56
this.outgoingSignatureParts = new
ScopedMessagePartSpecification
(other.outgoingSignatureParts, newBodyProtectionLevel != ProtectionLevel.None);
57
this.outgoingEncryptionParts = new
ScopedMessagePartSpecification
(other.outgoingEncryptionParts, newBodyProtectionLevel == ProtectionLevel.EncryptAndSign);
147
result.incomingSignatureParts = new
ScopedMessagePartSpecification
(this.OutgoingSignatureParts);
148
result.outgoingSignatureParts = new
ScopedMessagePartSpecification
(this.IncomingSignatureParts);
149
result.incomingEncryptionParts = new
ScopedMessagePartSpecification
(this.OutgoingEncryptionParts);
150
result.outgoingEncryptionParts = new
ScopedMessagePartSpecification
(this.IncomingEncryptionParts);
25 references to ScopedMessagePartSpecification
System.ServiceModel (25)
System\ServiceModel\Channels\AsymmetricSecurityBindingElement.cs (1)
205
bool HasProtectionRequirements(
ScopedMessagePartSpecification
scopedParts)
System\ServiceModel\Channels\PeerSecurityManager.cs (1)
337
void ApplySigningRequirements(
ScopedMessagePartSpecification
spec)
System\ServiceModel\Channels\ReliableSessionBindingElement.cs (6)
255
ScopedMessagePartSpecification
signaturePart = result.IncomingSignatureParts;
256
ScopedMessagePartSpecification
encryptionPart = result.IncomingEncryptionParts;
276
ScopedMessagePartSpecification
signaturePart = result.IncomingSignatureParts;
277
ScopedMessagePartSpecification
encryptionPart = result.IncomingEncryptionParts;
544
ScopedMessagePartSpecification
signaturePart,
545
ScopedMessagePartSpecification
encryptionPart,
System\ServiceModel\Channels\SecurityBindingElement.cs (1)
2345
ScopedMessagePartSpecification
scopedParts;
System\ServiceModel\Security\ChannelProtectionRequirements.cs (11)
16
ScopedMessagePartSpecification
incomingSignatureParts;
17
ScopedMessagePartSpecification
incomingEncryptionParts;
18
ScopedMessagePartSpecification
outgoingSignatureParts;
19
ScopedMessagePartSpecification
outgoingEncryptionParts;
60
public
ScopedMessagePartSpecification
IncomingSignatureParts
68
public
ScopedMessagePartSpecification
IncomingEncryptionParts
76
public
ScopedMessagePartSpecification
OutgoingSignatureParts
84
public
ScopedMessagePartSpecification
OutgoingEncryptionParts
120
static void AddActionParts(
ScopedMessagePartSpecification
to,
ScopedMessagePartSpecification
from)
160
static MessagePartSpecification UnionMessagePartSpecifications(
ScopedMessagePartSpecification
actionParts)
System\ServiceModel\Security\MessageSecurityProtocolFactory.cs (1)
207
ScopedMessagePartSpecification
scopedParts, bool isForSignature)
System\ServiceModel\Security\ScopedMessagePartSpecification.cs (3)
51
public ScopedMessagePartSpecification(
ScopedMessagePartSpecification
other)
69
internal ScopedMessagePartSpecification(
ScopedMessagePartSpecification
other, bool newIncludeBody)
161
internal void CopyTo(
ScopedMessagePartSpecification
target)
System\ServiceModel\Security\WSSecurityPolicy.cs (1)
1364
ScopedMessagePartSpecification
scopedParts;