7 instantiations of PreReadConnection
System.ServiceModel (7)
System\ServiceModel\Channels\SessionConnectionReader.cs (3)
450
connectionToUpgrade = new
PreReadConnection
(connectionToUpgrade, this.connectionBuffer, this.offset, this.size);
804
connectionToUpgrade = new
PreReadConnection
(connectionToUpgrade, channel.connectionBuffer, channel.offset, channel.size);
1194
result = new
PreReadConnection
(result, this.buffer, this.offset, this.size);
System\ServiceModel\Channels\SharedConnectionListener.cs (2)
714
return new NamedPipeValidatingConnection(new
PreReadConnection
(pipeConnection, duplicateContext.ReadData),
763
return new TcpValidatingConnection(new
PreReadConnection
(socketConnection, duplicateContext.ReadData),
System\ServiceModel\Channels\SingletonConnectionReader.cs (2)
508
connectionToUpgrade = new
PreReadConnection
(connectionToUpgrade, ConnectionBuffer, Offset, Size);
1229
singletonConnection = new
PreReadConnection
(singletonConnection, initialData);
2 references to PreReadConnection
System.ServiceModel (2)
System\ServiceModel\Channels\SessionConnectionReader.cs (2)
1187
PreReadConnection
preReadConnection = result as
PreReadConnection
;