4 overrides of IsMutuallyAuthenticated
System.Net.Security (4)
System\Net\NegotiateAuthenticationPal.ManagedNtlm.cs (1)
215
public override bool
IsMutuallyAuthenticated
=> false;
System\Net\NegotiateAuthenticationPal.ManagedSpnego.cs (1)
75
public override bool
IsMutuallyAuthenticated
=> _mechanism?.IsMutuallyAuthenticated ?? false;
System\Net\NegotiateAuthenticationPal.Unix.cs (1)
111
public override bool
IsMutuallyAuthenticated
=> (_contextFlags & Interop.NetSecurityNative.GssFlags.GSS_C_MUTUAL_FLAG) != 0;
System\Net\NegotiateAuthenticationPal.Unsupported.cs (1)
23
public override bool
IsMutuallyAuthenticated
=> false;
2 references to IsMutuallyAuthenticated
System.Net.Security (2)
System\Net\NegotiateAuthenticationPal.ManagedSpnego.cs (1)
75
public override bool IsMutuallyAuthenticated => _mechanism?.
IsMutuallyAuthenticated
?? false;
System\Net\Security\NegotiateAuthentication.cs (1)
114
public bool IsMutuallyAuthenticated => _isDisposed ? false : _pal.
IsMutuallyAuthenticated
;