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