7 writes to ProtectionLevel
System.ServiceModel (2)
System\ServiceModel\Channels\SecurityBindingElementImporter.cs (1)
357operation.ProtectionLevel = protectionLevel;
System\ServiceModel\Description\TypeLoader.cs (1)
919operationDescription.ProtectionLevel = opAttr.ProtectionLevel;
System.ServiceModel.Activities (5)
System\ServiceModel\Activities\ContractInferenceHelper.cs (5)
122operation.ProtectionLevel = protectionLevel.Value; 150operation.ProtectionLevel = protectionLevel.Value; 225operation.ProtectionLevel = protectionLevel.Value; 269operation.ProtectionLevel = send.ProtectionLevel.Value; 303operation.ProtectionLevel = receive.ProtectionLevel.Value;
12 references to ProtectionLevel
System.ServiceModel (6)
System\ServiceModel\Channels\SecurityBindingElementImporter.cs (1)
143existingProtectionLevel = operation.ProtectionLevel;
System\ServiceModel\Description\ServiceContractGenerator.cs (1)
473new CodeTypeReferenceExpression(typeof(ProtectionLevel)), operationDescription.ProtectionLevel.ToString())));
System\ServiceModel\Dispatcher\SecurityValidationBehavior.cs (2)
441operationScopeDefaultRequestProtectionLevel = operation.ProtectionLevel; 442operationScopeDefaultResponseProtectionLevel = operation.ProtectionLevel;
System\ServiceModel\Security\ChannelProtectionRequirements.cs (2)
232operationScopeDefaultRequestProtectionLevel = operation.ProtectionLevel; 233operationScopeDefaultResponseProtectionLevel = operation.ProtectionLevel;
System.ServiceModel.Activities (6)
System\ServiceModel\Activities\InternalSendMessage.cs (2)
3248o1.ProtectionLevel == o2.ProtectionLevel &&
System\ServiceModel\Activities\Receive.cs (1)
497receiveActivity.ProtectionLevel = operation.ProtectionLevel;
System\ServiceModel\Activities\WorkflowService.cs (3)
1148|| (receiveActivity.ProtectionLevel.HasValue && receiveActivity.ProtectionLevel.Value != targetOperation.ProtectionLevel) 1149|| (!receiveActivity.ProtectionLevel.HasValue && targetOperation.ProtectionLevel != Net.Security.ProtectionLevel.None)) 1152targetOperation.ProtectionLevel.ToString() : SR.NotSpecified;