1 write to ProtectionLevel
System.ServiceModel.Activities (1)
System\ServiceModel\Activities\Receive.cs (1)
497
receiveActivity.
ProtectionLevel
= operation.ProtectionLevel;
9 references to ProtectionLevel
System.ServiceModel.Activities (9)
System\ServiceModel\Activities\ContractInferenceHelper.cs (2)
301
if (receive.
ProtectionLevel
.HasValue)
303
operation.ProtectionLevel = receive.
ProtectionLevel
.Value;
System\ServiceModel\Activities\WorkflowService.cs (7)
1147
if ((!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))
1153
string receiveProtectionLevelString = receiveActivity.
ProtectionLevel
.HasValue ? receiveActivity.
ProtectionLevel
.ToString() : SR.NotSpecified;