19 references to Sign
dotnet-svcutil-lib (11)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\AsymmetricSecurityBindingElement.cs (1)
461result = ProtectionLevel.Sign;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ContextBindingElement.cs (1)
18internal const ProtectionLevel DefaultProtectionLevel = ProtectionLevel.Sign;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ContextBindingElementPolicy.cs (1)
102bindingElement = new ContextBindingElement(ProtectionLevel.Sign);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SecurityBindingElementImporter.cs (1)
146requestProtectionLevel = ProtectionLevel.Sign;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\OperationDescription.cs (1)
84if (!(value == ProtectionLevel.None || value == ProtectionLevel.Sign || value == ProtectionLevel.EncryptAndSign))
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\SecurityUtils.cs (4)
33|| value == ProtectionLevel.Sign 49|| (v1 == ProtectionLevel.Sign && v2 == ProtectionLevel.None)); 55|| (v1 == ProtectionLevel.Sign && v2 != ProtectionLevel.EncryptAndSign)); 74case ProtectionLevel.Sign:
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSTrustDec2005.cs (1)
182[FaultContract(typeof(string), Action = "*", ProtectionLevel = System.Net.Security.ProtectionLevel.Sign)]
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSTrustFeb2005.cs (1)
231[FaultContract(typeof(string), Action = "*", ProtectionLevel = System.Net.Security.ProtectionLevel.Sign)]
System.Net.Http (1)
System\Net\Http\SocketsHttpHandler\AuthenticationHelper.NtAuth.cs (1)
168requiredProtectionLevel = ProtectionLevel.Sign;
System.Net.Mail (1)
System\Net\Mail\SmtpNegotiateAuthenticationModule.cs (1)
33ProtectionLevel protectionLevel = ProtectionLevel.Sign;
System.Net.Security (3)
System\Net\NegotiateAuthenticationPal.Unix.cs (2)
172ProtectionLevel.Sign => Interop.NetSecurityNative.GssFlags.GSS_C_INTEG_FLAG, 226ProtectionLevel.Sign => Interop.NetSecurityNative.GssFlags.GSS_C_INTEG_FLAG,
System\Net\Security\NegotiateAuthentication.cs (1)
98!IsEncrypted ? ProtectionLevel.Sign :
System.ServiceModel.Primitives (3)
System\ServiceModel\Security\SecurityUtils.cs (3)
33|| value == ProtectionLevel.Sign 49|| (v1 == ProtectionLevel.Sign && v2 == ProtectionLevel.None)); 55|| (v1 == ProtectionLevel.Sign && v2 != ProtectionLevel.EncryptAndSign));