6 references to IsEncrypted
System.Net.Security (6)
System\Net\Security\NegotiateAuthentication.cs (1)
98
!
IsEncrypted
? ProtectionLevel.Sign :
System\Net\Security\NegotiateStream.cs (5)
229
public override bool IsEncrypted => IsAuthenticatedCore && _context.
IsEncrypted
;
231
public override bool IsSigned => IsAuthenticatedCore && (_context.IsSigned || _context.
IsEncrypted
);
248
private bool CanGetSecureStream => _context!.
IsEncrypted
|| _context.IsSigned;
395
if (isNtlm && !_context.
IsEncrypted
)
522
bool isEncrypted = _context.
IsEncrypted
;