4 overrides of IsSigned
System.Net.Security (4)
System\Net\NegotiateAuthenticationPal.ManagedNtlm.cs (1)
213public override bool IsSigned => _protectionLevel != ProtectionLevel.None;
System\Net\NegotiateAuthenticationPal.ManagedSpnego.cs (1)
73public override bool IsSigned => _mechanism?.IsSigned ?? false;
System\Net\NegotiateAuthenticationPal.Unix.cs (1)
107public override bool IsSigned => (_contextFlags & Interop.NetSecurityNative.GssFlags.GSS_C_INTEG_FLAG) != 0;
System\Net\NegotiateAuthenticationPal.Unsupported.cs (1)
21public override bool IsSigned => false;
2 references to IsSigned
System.Net.Security (2)
System\Net\NegotiateAuthenticationPal.ManagedSpnego.cs (1)
73public override bool IsSigned => _mechanism?.IsSigned ?? false;
System\Net\Security\NegotiateAuthentication.cs (1)
104public bool IsSigned => _isDisposed ? false : _pal.IsSigned;