16 instantiations of ScopedMessagePartSpecification
System.ServiceModel.Primitives (16)
System\ServiceModel\Security\ChannelProtectionRequirements.cs (16)
20
IncomingSignatureParts = new
ScopedMessagePartSpecification
();
21
IncomingEncryptionParts = new
ScopedMessagePartSpecification
();
22
OutgoingSignatureParts = new
ScopedMessagePartSpecification
();
23
_outgoingEncryptionParts = new
ScopedMessagePartSpecification
();
35
IncomingSignatureParts = new
ScopedMessagePartSpecification
(other.IncomingSignatureParts);
36
IncomingEncryptionParts = new
ScopedMessagePartSpecification
(other.IncomingEncryptionParts);
37
OutgoingSignatureParts = new
ScopedMessagePartSpecification
(other.OutgoingSignatureParts);
38
_outgoingEncryptionParts = new
ScopedMessagePartSpecification
(other._outgoingEncryptionParts);
48
IncomingSignatureParts = new
ScopedMessagePartSpecification
(other.IncomingSignatureParts, newBodyProtectionLevel != ProtectionLevel.None);
49
IncomingEncryptionParts = new
ScopedMessagePartSpecification
(other.IncomingEncryptionParts, newBodyProtectionLevel == ProtectionLevel.EncryptAndSign);
50
OutgoingSignatureParts = new
ScopedMessagePartSpecification
(other.OutgoingSignatureParts, newBodyProtectionLevel != ProtectionLevel.None);
51
_outgoingEncryptionParts = new
ScopedMessagePartSpecification
(other._outgoingEncryptionParts, newBodyProtectionLevel == ProtectionLevel.EncryptAndSign);
138
result.IncomingSignatureParts = new
ScopedMessagePartSpecification
(OutgoingSignatureParts);
139
result.OutgoingSignatureParts = new
ScopedMessagePartSpecification
(IncomingSignatureParts);
140
result.IncomingEncryptionParts = new
ScopedMessagePartSpecification
(OutgoingEncryptionParts);
141
result._outgoingEncryptionParts = new
ScopedMessagePartSpecification
(IncomingEncryptionParts);
17 references to ScopedMessagePartSpecification
System.ServiceModel.Primitives (17)
System\ServiceModel\Channels\ReliableSessionBindingElement.cs (6)
228
ScopedMessagePartSpecification
signaturePart = result.IncomingSignatureParts;
229
ScopedMessagePartSpecification
encryptionPart = result.IncomingEncryptionParts;
249
ScopedMessagePartSpecification
signaturePart = result.IncomingSignatureParts;
250
ScopedMessagePartSpecification
encryptionPart = result.IncomingEncryptionParts;
375
ScopedMessagePartSpecification
signaturePart,
376
ScopedMessagePartSpecification
encryptionPart,
System\ServiceModel\Security\ChannelProtectionRequirements.cs (8)
16
private
ScopedMessagePartSpecification
_outgoingEncryptionParts;
54
public
ScopedMessagePartSpecification
IncomingSignatureParts { get; private set; }
56
public
ScopedMessagePartSpecification
IncomingEncryptionParts { get; private set; }
58
public
ScopedMessagePartSpecification
OutgoingSignatureParts { get; private set; }
60
public
ScopedMessagePartSpecification
OutgoingEncryptionParts
109
private static void AddActionParts(
ScopedMessagePartSpecification
to,
ScopedMessagePartSpecification
from)
151
private static MessagePartSpecification UnionMessagePartSpecifications(
ScopedMessagePartSpecification
actionParts)
System\ServiceModel\Security\ScopedMessagePartSpecification.cs (3)
35
public ScopedMessagePartSpecification(
ScopedMessagePartSpecification
other)
55
internal ScopedMessagePartSpecification(
ScopedMessagePartSpecification
other, bool newIncludeBody)
174
internal void CopyTo(
ScopedMessagePartSpecification
target)