1 write to ProtectionLevel
System.ServiceModel.Activities (1)
System\ServiceModel\Activities\Receive.cs (1)
497receiveActivity.ProtectionLevel = operation.ProtectionLevel;
9 references to ProtectionLevel
System.ServiceModel.Activities (9)
System\ServiceModel\Activities\ContractInferenceHelper.cs (2)
301if (receive.ProtectionLevel.HasValue) 303operation.ProtectionLevel = receive.ProtectionLevel.Value;
System\ServiceModel\Activities\WorkflowService.cs (7)
1147if ((!targetOperation.HasProtectionLevel && receiveActivity.ProtectionLevel.HasValue && receiveActivity.ProtectionLevel != Net.Security.ProtectionLevel.None) 1148|| (receiveActivity.ProtectionLevel.HasValue && receiveActivity.ProtectionLevel.Value != targetOperation.ProtectionLevel) 1149|| (!receiveActivity.ProtectionLevel.HasValue && targetOperation.ProtectionLevel != Net.Security.ProtectionLevel.None)) 1153string receiveProtectionLevelString = receiveActivity.ProtectionLevel.HasValue ? receiveActivity.ProtectionLevel.ToString() : SR.NotSpecified;