1 write to connection
System.ServiceModel (1)
System\ServiceModel\Channels\Connection.cs (1)
66this.connection = connection;
20 references to connection
System.ServiceModel (20)
System\ServiceModel\Channels\Connection.cs (20)
71get { return connection.AsyncReadBuffer; } 76get { return connection.AsyncReadBufferSize; } 81get { return connection.ExceptionEventType; } 82set { connection.ExceptionEventType = value; } 87get { return connection; } 92get { return connection.RemoteIPEndPoint; } 97connection.Abort(); 102connection.Close(timeout, asyncAndLinger); 107connection.Shutdown(timeout); 112return connection.DuplicateAndClose(targetProcessId); 117return connection.GetCoreTransport(); 122return connection.BeginValidate(uri, callback, state); 127return connection.EndValidate(result); 133return connection.BeginWrite(buffer, offset, size, immediate, timeout, callback, state); 138connection.EndWrite(); 143connection.Write(buffer, offset, size, immediate, timeout); 148connection.Write(buffer, offset, size, immediate, timeout, bufferManager); 153return connection.Read(buffer, offset, size, timeout); 159return connection.BeginRead(offset, size, timeout, callback, state); 164return connection.EndRead();