26 references to Sign
System (2)
net\System\Net\SecureProtocols\_NegoState.cs (2)
182else if (protectionLevel == ProtectionLevel.Sign) 537ProtectionLevel result = _Context.IsConfidentialityFlag? ProtectionLevel.EncryptAndSign: _Context.IsIntegrityFlag? ProtectionLevel.Sign: ProtectionLevel.None;
System.ServiceModel (22)
System\ServiceModel\Channels\AsymmetricSecurityBindingElement.cs (1)
145requestProtectionLevel = ProtectionLevel.Sign;
System\ServiceModel\Channels\CallbackContextMessageHeader.cs (1)
77else if (protectionLevel == ProtectionLevel.Sign)
System\ServiceModel\Channels\ContextBindingElement.cs (1)
20internal const ProtectionLevel DefaultProtectionLevel = ProtectionLevel.Sign;
System\ServiceModel\Channels\ContextBindingElementPolicy.cs (2)
59case ProtectionLevel.Sign: 140bindingElement = new ContextBindingElement(ProtectionLevel.Sign);
System\ServiceModel\Channels\ContextMessageHeader.cs (1)
89else if (protectionLevel == ProtectionLevel.Sign)
System\ServiceModel\Channels\MsmqBindingElementBase.cs (1)
388this.MsmqTransportSecurity.MsmqProtectionLevel = ProtectionLevel.Sign;
System\ServiceModel\Channels\SecurityBindingElementImporter.cs (1)
462result = ProtectionLevel.Sign;
System\ServiceModel\Channels\TransportDefaults.cs (1)
168internal const ProtectionLevel MsmqProtectionLevel = ProtectionLevel.Sign;
System\ServiceModel\Configuration\Properties.cs (4)
144properties.Add(new ConfigurationProperty("protectionLevel", typeof(System.Net.Security.ProtectionLevel), System.Net.Security.ProtectionLevel.Sign, null, new System.ServiceModel.Configuration.ServiceModelEnumValidator(typeof(System.ServiceModel.Security.ProtectionLevelHelper)), System.Configuration.ConfigurationPropertyOptions.None)); 171properties.Add(new ConfigurationProperty("contextProtectionLevel", typeof(System.Net.Security.ProtectionLevel), System.Net.Security.ProtectionLevel.Sign, null, new System.ServiceModel.Configuration.ServiceModelEnumValidator(typeof(System.ServiceModel.Security.ProtectionLevelHelper)), System.Configuration.ConfigurationPropertyOptions.None)); 197properties.Add(new ConfigurationProperty("contextProtectionLevel", typeof(System.Net.Security.ProtectionLevel), System.Net.Security.ProtectionLevel.Sign, null, new System.ServiceModel.Configuration.ServiceModelEnumValidator(typeof(System.ServiceModel.Security.ProtectionLevelHelper)), System.Configuration.ConfigurationPropertyOptions.None)); 1979properties.Add(new ConfigurationProperty("msmqProtectionLevel", typeof(System.Net.Security.ProtectionLevel), System.Net.Security.ProtectionLevel.Sign, null, new System.ServiceModel.Configuration.ServiceModelEnumValidator(typeof(System.ServiceModel.Security.ProtectionLevelHelper)), System.Configuration.ConfigurationPropertyOptions.None));
System\ServiceModel\Dispatcher\SecurityValidationBehavior.cs (2)
522request = ProtectionLevel.Sign; 535response = ProtectionLevel.Sign;
System\ServiceModel\PeerSecuritySettings.cs (1)
72level = System.Net.Security.ProtectionLevel.Sign;
System\ServiceModel\Security\SecurityUtils.cs (4)
57|| value == ProtectionLevel.Sign 73|| (v1 == ProtectionLevel.Sign && v2 == ProtectionLevel.None)); 79|| (v1 == ProtectionLevel.Sign && v2 != ProtectionLevel.EncryptAndSign)); 98case ProtectionLevel.Sign:
System\ServiceModel\Security\WSTrustDec2005.cs (1)
183[FaultContract(typeof(string), Action = "*", ProtectionLevel = System.Net.Security.ProtectionLevel.Sign)]
System\ServiceModel\Security\WSTrustFeb2005.cs (1)
273[FaultContract(typeof(string), Action = "*", ProtectionLevel = System.Net.Security.ProtectionLevel.Sign)]
System.ServiceModel.Activities (1)
System\ServiceModel\Activities\Description\WorkflowInstanceManagementBehavior.cs (1)
86ProtectionLevel = ProtectionLevel.Sign
System.WorkflowServices (1)
System\Workflow\Activities\Design\ServiceOperationDetailViewControl.cs (1)
45this.protectionLevelComboBox.Items.Add(ProtectionLevel.Sign);