8 writes to ProtectionLevel
System.ServiceModel (8)
System\ServiceModel\Channels\SecurityBindingElementImporter.cs (2)
149
part.
ProtectionLevel
= newProtectionLevel;
162
part.
ProtectionLevel
= newProtectionLevel;
System\ServiceModel\Description\OperationGenerator.cs (1)
637
wrapperPart.
ProtectionLevel
= protectionLevel;
System\ServiceModel\Description\TypeLoader.cs (2)
1391
partDescription.
ProtectionLevel
= bodyAttr.ProtectionLevel;
1445
headerDescription.
ProtectionLevel
= headerAttr.ProtectionLevel;
System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (1)
557
part.
ProtectionLevel
= bodyPart.ProtectionLevel;
System\ServiceModel\Security\WSTrust.cs (2)
1262
part.
ProtectionLevel
= System.Net.Security.ProtectionLevel.EncryptAndSign;
1267
message.Body.ReturnValue.
ProtectionLevel
= System.Net.Security.ProtectionLevel.EncryptAndSign;
9 references to ProtectionLevel
System.ServiceModel (9)
System\ServiceModel\Channels\SecurityBindingElementImporter.cs (1)
135
existingProtectionLevel = part.
ProtectionLevel
;
System\ServiceModel\Description\OperationGenerator.cs (3)
611
protectionLevel = ProtectionLevelHelper.Max(protectionLevel, messageDescription.Body.ReturnValue.
ProtectionLevel
);
620
protectionLevel = ProtectionLevelHelper.Max(protectionLevel, part.
ProtectionLevel
);
868
CustomAttributeHelper.CreateOrOverridePropertyDeclaration(decl, MessageContractMemberAttribute.ProtectionLevelPropertyName, setting.
ProtectionLevel
);
System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (1)
557
part.ProtectionLevel = bodyPart.
ProtectionLevel
;
System\ServiceModel\Dispatcher\SecurityValidationBehavior.cs (1)
470
headerScopeDefaultProtectionLevel = header.
ProtectionLevel
;
System\ServiceModel\Security\ChannelProtectionRequirements.cs (3)
281
bodyProtectionLevel = desc.HasProtectionLevel ? desc.
ProtectionLevel
: messageScopeDefaultProtectionLevel;
293
ProtectionLevel partProtectionLevel = body.HasProtectionLevel ? body.
ProtectionLevel
: messageScopeDefaultProtectionLevel;
337
ProtectionLevel p = header.HasProtectionLevel ? header.
ProtectionLevel
: defaultProtectionLevel;