4 writes to Length
System.Net.Security (4)
System\Net\Security\TlsFrameHelper.cs (4)
174header.Length = -1; 183header.Length = ((frame[3] << 8) | frame[4]) + HeaderSize; 209header.Length = length; 214header.Length = -1;
9 references to Length
System.Net.Security (9)
System\Net\Security\SslStream.IO.cs (3)
555frameSize = nextHeader.Length; 1121if (_lastFrame.Header.Length < 0) 1127return _lastFrame.Header.Length;
System\Net\Security\TlsFrameHelper.cs (6)
92public override string ToString() => $"{Version}:{Type}[{Length}]"; 133return $"{Header.Version}:{HandshakeType}[{Header.Length}] TargetName='{TargetName}' SupportedVersion='{SupportedVersions}' ApplicationProtocols='{ApplicationProtocols}'"; 137return $"{Header.Version}:{HandshakeType}[{Header.Length}] SupportedVersion='{SupportedVersions}' ApplicationProtocols='{ApplicationProtocols}'"; 141return $"{Header.Version}:{HandshakeType}[{Header.Length}] SupportedVersion='{SupportedVersions}'"; 146return $"{Header.Version}:{Header.Type}[{Header.Length}]"; 273bool isComplete = frame.Length >= info.Header.Length;