4 overrides of IsEncrypted
System.Net.Security (4)
System\Net\NegotiateAuthenticationPal.ManagedNtlm.cs (1)
214public override bool IsEncrypted => _protectionLevel == ProtectionLevel.EncryptAndSign;
System\Net\NegotiateAuthenticationPal.ManagedSpnego.cs (1)
74public override bool IsEncrypted => _mechanism?.IsEncrypted ?? false;
System\Net\NegotiateAuthenticationPal.Unix.cs (1)
109public override bool IsEncrypted => (_contextFlags & Interop.NetSecurityNative.GssFlags.GSS_C_CONF_FLAG) != 0;
System\Net\NegotiateAuthenticationPal.Unsupported.cs (1)
22public override bool IsEncrypted => false;
2 references to IsEncrypted
System.Net.Security (2)
System\Net\NegotiateAuthenticationPal.ManagedSpnego.cs (1)
74public override bool IsEncrypted => _mechanism?.IsEncrypted ?? false;
System\Net\Security\NegotiateAuthentication.cs (1)
109public bool IsEncrypted => _isDisposed ? false : _pal.IsEncrypted;