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