5 references to IsAuthenticatedCore
System.Net.Security (5)
System\Net\Security\NegotiateStream.cs (5)
219
public override bool IsAuthenticated =>
IsAuthenticatedCore
;
224
public override bool IsMutuallyAuthenticated =>
IsAuthenticatedCore
&& _context.IsMutuallyAuthenticated;
226
public override bool IsEncrypted =>
IsAuthenticatedCore
&& _context.IsEncrypted;
228
public override bool IsSigned =>
IsAuthenticatedCore
&& (_context.IsSigned || _context.IsEncrypted);
721
if (authSuccessCheck && !
IsAuthenticatedCore
)