Articoli correlati a Pro .Net 1.1 Remoting, Reflection, And Threading

Pro .Net 1.1 Remoting, Reflection, And Threading - Rilegato

 
9781590594520: Pro .Net 1.1 Remoting, Reflection, And Threading
Vedi tutte le copie di questo ISBN:
 
 
Three powerful technologies-- Remoting, Reflection, and Threading-- are combined in a single book! And when these technologies come together, you are faced with a powerful range of tools that allow you to run code faster, more securely, and more flexibly. (And performance gains are critical in today's industry!) So you'll be able to code applications across the spectrum--from a single machine to an entire network. This book begins by discussing the most fundamental of the three techniques: .NET Remoting in VB.NET--which allows you to customize your application communication processes. The next portion of the book covers Reflection, which allows you to examine code at run time, regardless of prior knowledge of its structure. Finally, the book explores Threading, which helps break up your application into multiple, independent threads.

Le informazioni nella sezione "Riassunto" possono far riferimento a edizioni diverse di questo titolo.

L'autore:
Syed Fahad Gilani has more than 15 years of experience in computing. He sold his first program at the age of 10.
Contenuti:
Pro .NET 1.1 Remoting, Reflection, and Threading TOBIN TITUS, SYED FAHAD GILANI, MIKE GILLESPIE, JAMES HART, BENNY K. MATHEW, ANDY OLSEN, DAVID CURRAN, JON PINNOCK, ROBIN PARS, FABIO CLAUDIO FERRACCHIATI, SANDRA GOPIKRISHNA, TEJASWI REDKAR, SRINIVASA SIVAKUMAR Pro .NET 1.1 Remoting, Reflection, and Threading Copyright © 2005 by Tobin Titus, Syed Fahad Gilani, Mike Gillespie, James Hart, Benny K. Mathew, Andy Olsen, David Curran, Jon Pinnock, Robin Pars, Fabio Claudio Ferracchiati, Sandra Gopikrishna, Tejaswi Redkar, Srinivasa Sivakumar All rights reserved. No part of this work may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopying, recording, or by any information storage or retrieval system, without the prior written permission of the copyright owner and the publisher. ISBN: 1-59059-452-5 Printed and bound in the United States of America 9 8 7 6 5 4 3 2 1 Trademarked names may appear in this book. Rather than use a trademark symbol with every occurrence of a trademarked name, we use the names only in an editorial fashion and to the benefit of the trademark owner, with no intention of infringement of the trademark. Lead Editor: Ewan Buckingham Technical Reviewers: Rick Delorme, Don Reamey Editorial Board: Steve Anglin, Dan Appleman, Ewan Buckingham, Gary Cornell, Tony Davis, Jason Gilmore, Jonathan Hassell, Chris Mills, Dominic Shakeshaft, Jim Sumser Assistant Publisher: Grace Wong Project Manager: Beckie Stones Copy Manager: Nicole LeClerc Copy Editor: Julie McNamee Production Manager: Kari Brooks-Copony Production Editor: Kelly Winquist Compositor: Kinetic Publishing Services, LLC Proofreader: Patrick Vincent Indexer: Michael Brinkman Artist: Kinetic Publishing Services, LLC Cover Designer: Kurt Krames Manufacturing Manager: Tom Debolski Distributed to the book trade in the United States by Springer-Verlag New York, Inc., 233 Spring Street, 6th Floor, New York, NY 10013, and outside the United States by Springer-Verlag GmbH & Co. KG, Tiergartenstr. 17, 69112 Heidelberg, Germany. In the United States: phone 1-800-SPRINGER, fax 201-348-4505, e-mail orders@springer-ny.com, or visit http://www.springer-ny.com. Outside the United States: fax +49 6221 345229, e-mail orders@springer.de, or visit http://www.springer.de. For information on translations, please contact Apress directly at 2560 Ninth Street, Suite 219, Berkeley, CA 94710. Phone 510-549-5930, fax 510-549-5939, e-mail info@apress.com, or visit http://www.apress.com. The information in this book is distributed on an “as is” basis, without warranty. Although every precaution has been taken in the preparation of this work, neither the author(s) nor Apress shall have any liability to any person or entity with respect to any loss or damage caused or alleged to be caused directly or indirectly by the information contained in this work. The source code for this book is available to readers at http://www.apress.com in the Downloads section. Contents at a Glance About the Author . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xv About the Technical Reviewers. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xvii Acknowledgments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xix Introduction. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xxi CHAPTER 1 Introducing .NET Remoting. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 CHAPTER 2 Remoting Basics. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15 CHAPTER 3 Custom Remoting. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43 CHAPTER 4 Configuration and Deployment . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 99 CHAPTER 5 Asynchronous Remoting . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 127 CHAPTER 6 Debugging and Error Handling . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 159 CHAPTER 7 Flexible Programming . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 209 CHAPTER 8 Examining Assemblies, Objects, and Types . . . . . . . . . . . . . . . . . . . . 223 CHAPTER 9 Using Objects. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 251 CHAPTER 10 Creating Objects . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 279 CHAPTER 11 Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 301 CHAPTER 12 The .NET Component Model. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 343 CHAPTER 13 Defining Threads . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 397 CHAPTER 14 Threading in .NET. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 421 CHAPTER 15 Working with Threads. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 469 CHAPTER 16 Threading Models . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 519 CHAPTER 17 Scaling Threaded Applications . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 535 CHAPTER 18 Debugging and Tracing Threads . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 563 CHAPTER 19 Networking and Threading . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 593 INDEX. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 619 v

Le informazioni nella sezione "Su questo libro" possono far riferimento a edizioni diverse di questo titolo.

  • EditoreApress
  • Data di pubblicazione2005
  • ISBN 10 1590594525
  • ISBN 13 9781590594520
  • RilegaturaCopertina rigida
  • Numero edizione1
  • Numero di pagine647

Altre edizioni note dello stesso titolo

9781430212195: Pro .Net 1.1, Remoting, Reflection, and Threading

Edizione in evidenza

ISBN 10:  1430212195 ISBN 13:  9781430212195
Brossura

I migliori risultati di ricerca su AbeBooks

Foto dell'editore

Gopikrishna, S
Editore: Apress (2005)
ISBN 10: 1590594525 ISBN 13: 9781590594520
Nuovo Rilegato Quantità: 6
Da:
Basi6 International
(Irving, TX, U.S.A.)
Valutazione libreria

Descrizione libro Condizione: Brand New. New. US edition. Expediting shipping for all USA and Europe orders excluding PO Box. Excellent Customer Service. Codice articolo ABEOCT23-145450

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 24,01
Convertire valuta

Aggiungere al carrello

Spese di spedizione: GRATIS
In U.S.A.
Destinazione, tempi e costi
Foto dell'editore

GOPIKRISHNA, S
Editore: Apress (2005)
ISBN 10: 1590594525 ISBN 13: 9781590594520
Nuovo Rilegato Quantità: 1
Da:
Romtrade Corp.
(STERLING HEIGHTS, MI, U.S.A.)
Valutazione libreria

Descrizione libro Condizione: New. Brand New Original US Edition.We Ship to PO BOX Address also. EXPEDITED shipping option also available for faster delivery.This item may ship from the US or other locations in India depending on your location and availability. Codice articolo ABTR-7139

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 24,01
Convertire valuta

Aggiungere al carrello

Spese di spedizione: GRATIS
In U.S.A.
Destinazione, tempi e costi
Foto dell'editore

GOPIKRISHNA, S
Editore: Apress (2005)
ISBN 10: 1590594525 ISBN 13: 9781590594520
Nuovo Rilegato Quantità: 1
Da:
SMASS Sellers
(IRVING, TX, U.S.A.)
Valutazione libreria

Descrizione libro Condizione: New. Brand New Original US Edition. Customer service! Satisfaction Guaranteed. This item may ship from the US or our Overseas warehouse depending on your location and stock availability. We Ship to PO BOX Location also. Codice articolo ABRR-7139

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 24,99
Convertire valuta

Aggiungere al carrello

Spese di spedizione: GRATIS
In U.S.A.
Destinazione, tempi e costi
Foto dell'editore

Tobin Titus Syed Fahad Gilani Mike Gillespie
Editore: Apress, Incorporated (2005)
ISBN 10: 1590594525 ISBN 13: 9781590594520
Nuovo Rilegato Quantità: 1
Da:
Books Puddle
(New York, NY, U.S.A.)
Valutazione libreria

Descrizione libro Condizione: New. pp. 674. Codice articolo 26293765

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 27,94
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 3,68
In U.S.A.
Destinazione, tempi e costi
Foto dell'editore

Titus Tobin Gilani Syed Fahad Gillespie Mike
Editore: Apress, Incorporated (2005)
ISBN 10: 1590594525 ISBN 13: 9781590594520
Nuovo Rilegato Quantità: 1
Da:
Majestic Books
(Hounslow, Regno Unito)
Valutazione libreria

Descrizione libro Condizione: New. pp. 674 Illus. Codice articolo 7586906

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 24,40
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 7,63
Da: Regno Unito a: U.S.A.
Destinazione, tempi e costi
Immagini fornite dal venditore

"David Curran", "Fabio Claudio Ferracchiati", "Syed Fahad Gilani", "Mike Gillespie", "Sandra Gopikrishna", "James Hart", "Benny K. Mathew", "Andy Olsen", "Jon Pinnock", "Tobin Titus", "Srinivasa Sivakumar"
Editore: Apress (2005)
ISBN 10: 1590594525 ISBN 13: 9781590594520
Nuovo Rilegato Quantità: 10
Da:
booksXpress
(Bayonne, NJ, U.S.A.)
Valutazione libreria

Descrizione libro Hardcover. Condizione: new. Codice articolo 9781590594520

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 54,63
Convertire valuta

Aggiungere al carrello

Spese di spedizione: GRATIS
In U.S.A.
Destinazione, tempi e costi
Foto dell'editore

David Curran; Fabio Claudio Ferracchiati; Syed Fahad Gilani; Mike Gillespie; Sandra Gopikrishna; James Hart; Benny K. Mathew; Andy Olsen; Jon Pinnock; Tobin Titus; Srinivasa Sivakumar
Editore: Apress (2005)
ISBN 10: 1590594525 ISBN 13: 9781590594520
Nuovo Rilegato Quantità: > 20
Da:
Lucky's Textbooks
(Dallas, TX, U.S.A.)
Valutazione libreria

Descrizione libro Condizione: New. Codice articolo ABLIING23Mar2811580082060

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 57,22
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 3,68
In U.S.A.
Destinazione, tempi e costi
Foto dell'editore

David Curran, Fabio Claudio Ferracchiati, Syed Fahad Gilani, Mike Gillespie,
Editore: Apress (2005)
ISBN 10: 1590594525 ISBN 13: 9781590594520
Nuovo Rilegato Quantità: 1
Da:
Basi6 International
(Irving, TX, U.S.A.)
Valutazione libreria

Descrizione libro Condizione: Brand New. New. US edition. Expediting shipping for all USA and Europe orders excluding PO Box. Excellent Customer Service. Codice articolo ABEOCT23-363643

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 66,52
Convertire valuta

Aggiungere al carrello

Spese di spedizione: GRATIS
In U.S.A.
Destinazione, tempi e costi
Foto dell'editore

Tobin Titus
Editore: Springer (2005)
ISBN 10: 1590594525 ISBN 13: 9781590594520
Nuovo Rilegato Quantità: > 20
Print on Demand
Da:
Ria Christie Collections
(Uxbridge, Regno Unito)
Valutazione libreria

Descrizione libro Condizione: New. PRINT ON DEMAND Book; New; Fast Shipping from the UK. No. book. Codice articolo ria9781590594520_lsuk

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 65,24
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 11,71
Da: Regno Unito a: U.S.A.
Destinazione, tempi e costi
Foto dell'editore

David Curran, Fabio Claudio Ferracchiati, Syed Fahad Gilani, Mike Gillespie,
Editore: Apress (2005)
ISBN 10: 1590594525 ISBN 13: 9781590594520
Nuovo Rilegato Quantità: 1
Da:
Romtrade Corp.
(STERLING HEIGHTS, MI, U.S.A.)
Valutazione libreria

Descrizione libro Condizione: New. Brand New Original US Edition.We Ship to PO BOX Address also. EXPEDITED shipping option also available for faster delivery.This item may ship from the US or other locations in India depending on your location and availability. Codice articolo ABTR-280321

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 77,59
Convertire valuta

Aggiungere al carrello

Spese di spedizione: GRATIS
In U.S.A.
Destinazione, tempi e costi

Vedi altre copie di questo libro

Vedi tutti i risultati per questo libro