Home > Store

Framework Design Guidelines: Conventions, Idioms, and Patterns for Reusable .NET Libraries

Register your product to gain access to bonus material or receive a coupon.

Framework Design Guidelines: Conventions, Idioms, and Patterns for Reusable .NET Libraries

Book

  • Sorry, this book is no longer in print.
Not for Sale

About

Features

Direct from the architects themselves, this book is the only source of information on designing reusable APIs in .NET

° Frameworks are reusable API libraries

° These guidelines are the authoritative guide to the .NET Framework, and the authors are the creators of them

° This book provides not just the guidelines themselves, but also many annotations that explain the finer points of using them

° The guidelines are poorly documented online, and this is the first book about them

Description

  • Copyright 2006
  • Edition: 1st
  • Book
  • ISBN-10: 0-321-24675-6
  • ISBN-13: 978-0-321-24675-2

A new edition of this title is available, ISBN-10: 0321545613 ISBN-13: 9780321545619

"This book is an absolute must-read for all .NET developers. It gives clear do and don't guidance on how to design class libraries for .NET. It also offers insight into the design and creation of .NET that really helps developers understand the reasons why things are the way they are. This information will aid developers designing their own class libraries and will also allow them to take advantage of the .NET class library more effectively."

--Jeffrey Richter, author/trainer/consultant, Wintellect

"Framework Design Guidelines will help you in two important ways. First, any .NET developer will benefit from a greater understanding of the design principles that govern the .NET Base Class Library. Second, a deeper understanding of these principles will help you to create software that integrates well with the .NET environment. Quite frankly, this book should be on every .NET developer's bookshelf."

--Bill Wagner, founder and consultant, SRT Solutions, author of Effective C#

"Not since Brooks' The Mythical Man Month has the major software maker of its time produced a book so full of relevant advice for the modern software developer. This book has a permanent place on my bookshelf and I consult it frequently."

--George Byrkit, senior software engineer, Genomic Solutions

"This book is a must-read for all architects and software developers thinking about frameworks. The book offers insight into some driving factors behind the design of the .NET Framework. It should be considered mandatory reading for anybody tasked with creating application frameworks."

--Peter Winkler, senior software engineer, Balance Technology Inc.

"Frameworks are valuable but notoriously difficult to construct: Your every decision must be geared towards making them easy to be used correctly and difficult to be used incorrectly. This book takes you through a progression of recommendations that will eliminate many of those downstream 'I wish I'd known that earlier' moments. I wish I'd read it earlier."

--Paul Besly, principal technologist, QA

"Filled with information useful to developers and architects of all levels, this book provides practical guidelines and expert background information to get behind the rules. Framework Design Guidelines takes the already published guidelines to a higher level, and it is needed to write applications that integrate well in the .NET area."

--Cristof Falk, software engineer

Framework Design Guidelines: Conventions, Idioms, and Patterns for Reusable .NET Libraries teaches developers the best practices for designing system frameworks and reusable libraries for use with the Microsoft .NET Framework and WinFX. This book focuses on the design issues that directly affect the programmability of a framework, specifically its publicly accessible APIs.

This book can improve the work of any .NET developer producing code that other developers will use. An added benefit is a collection of annotations to the guidelines by various members of the Microsoft .NET Framework and WinFX teams, which provide a lively discussion of the motives behind the guidelines, along with examples of good reasons for breaking the guidelines.

Microsoft architects Krzysztof Cwalina and Brad Abrams offer guidelines for framework design from the top down. From their long experience and deep insight, you will learn

  • The general philosophy of framework design
  • Principles and guidelines that are fundamental to overall framework design
  • Naming guidelines for the various parts of a framework, such as namespaces, types, and members
  • Guidelines for the design of types and members of types
  • Issues and guidelines that are important to ensure appropriate extensibilityin your framework
  • Guidelines for working with exceptions, the preferred error reporting mechanism in the .NET Framework and WinFX
  • Guidelines for extending and using types that commonly appear in frameworks
  • Guidelines for and examples of common framework design patterns

Guidelines in this book come in four major forms: Do, Consider, Avoid, and Do not. In general, a Do guideline should almost always be followed, a Consider guideline should generally be followed, an Avoid guideline indicates that something is generally not a good idea, and a Do not guideline indicates something you should almost never do. Every guideline includes a discussion of its applicability, and most guidelines include a code example.

A companion DVD includes the Designing .NET Class Libraries video series, instructional presentations by the authors on design guidelines for developing classes and components that extend the .NET Framework. A sample API specification and other useful resources are also included.



Sample Content

Online Sample Chapter

Type Design Guidelines in .NET

Downloadable Sample Chapter

Download the Sample Chapter related to this title.

Table of Contents

Figures xiii Acknowledgments xxv

About the Authors xxvii

Tables xv Foreword xvii

Preface xix

Chapter 1: Introduction 1

1.1 Qualities of a Well-Designed Framework 3

1.1.1 Well-Designed Frameworks Are Simple 3

1.1.2 Well-Designed Frameworks Are Expensive to Design 3

1.1.3 Well-Designed Frameworks Are Full of Trade-Offs 4

1.1.4 Well-Designed Frameworks Borrow from the Past 5

1.1.5 Well-Designed Frameworks Are Designed to Evolve 5

1.1.6 Well-Designed Frameworks Are Integrated 5

1.1.7 Well-Designed Frameworks Are Consistent 6

Chapter 2: Framework Design Fundamentals 7

2.1 Progressive Frameworks 9

2.2 Fundamental Principles of Framework Design 12

2.2.1 The Principle of Scenario-Driven Design 13

2.2.2 The Principle of Low Barrier to Entry 19

2.2.3 The Principle of Self-Documenting Object Models 23

2.2.4 The Principle of Layered Architecture 29

2.3 Summary 31

Chapter 3: Naming Guidelines 33

3.1 Capitalization Conventions 34

3.1.1 Capitalization Rules for Identifiers 34

3.1.2 Capitalizing Acronyms 36

3.1.3 Capitalizing Compound Words and Common Terms 39

3.1.4 Case Sensitivity 41

3.2 General Naming Conventions 41

3.2.1 Word Choice 42

3.2.2 Using Abbreviations and Acronyms 43

3.2.3 Avoiding Language-Specific Names 44

3.2.4 Naming New Versions of Existing APIs 46

3.3 Names of Assemblies and DLLs 48

3.4 Names of Namespaces 49

3.4.1 Namespaces and Type Name Conflicts 51

3.5 Names of Classes, Structs, and Interfaces 54

3.5.1 Names of Generic Type Parameters 56

3.5.2 Names of Common Types 57

3.5.3 Naming Enumerations 59

3.6 Names of Type Members 60

3.6.1 Names of Methods 60

3.6.2 Names of Properties 61

3.6.3 Names of Events 63

3.6.4 Naming Fields 64

3.7 Naming Parameters 64

3.8 Naming Resources 65

3.9 Summary 66

Chapter 4: Type Design Guidelines 67

4.1 Types and Namespaces 69

4.1.1 Standard Subnamespace Names 73

4.2 Choosing Between Class and Struct 74

4.3 Choosing Between Class and Interface 77

4.4 Abstract Class Design 83

4.5 Static Class Design 85

4.6 Interface Design 86

4.7 Struct Design 89

4.8 Enum Design 91

4.8.1 Designing Flag Enums 97

4.8.2 Adding Values to Enums 100

4.9 Nested Types 101

4.10 Summary 104

Chapter 5: Member Design 105

5.1 General Member Design Guidelines 105

5.1.1 Member Overloading 105

5.1.2 Implementing Interface Members Explicitly 111

5.1.3 Choosing Between Properties and Methods 115

5.2 Property Design 120

5.2.1 Indexed Property Design 122

5.2.2 Property Change Notification Events 124

5.3 Constructor Design 125

5.3.1 Type Constructor Guidelines 131

5.4 Event Design 132

5.4.1 Custom Event Handler Design 138

5.5 Field Design 139

5.6 Operator Overloads 141

5.6.1 Overloading Operator == 146

5.6.2 Conversion Operators 146

5.7 Parameter Design 148

5.7.1 Choosing Between Enum and Boolean Parameters 150

5.7.2 Validating Arguments 152

5.7.3 Parameter Passing 155

5.7.4 Members with Variable Number of Parameters 157

5.7.5 Pointer Parameters 161

5.8 Summary 162

Chapter 6: Designing for Extensibility 163

6.1 Extensibility Mechanisms 163

6.1.1 Unsealed Classes 164

6.1.2 Protected Members 165

6.1.3 Events and Callbacks 166

6.1.4 Virtual Members 168

6.1.5 Abstractions (Abstract Types and Interfaces) 170

6.2 Base Classes 172

6.3 Sealing 174

6.4 Summary 177

Chapter 7: Exceptions 179

7.1 Exception Throwing 183

7.2 Choosing the Right Type of Exception to Throw 189

7.2.1 Error Message Design 189

7.2.2 Exception Handling 191

7.2.3 Wrapping Exceptions 195

7.3 Using Standard Exception Types 197

7.3.1 Exception and SystemException 197

7.3.2 ApplicationException 197

7.3.3 InvalidOperationException 198

7.3.4 ArgumentException, ArgumentNullException, and ArgumentOutOfRangeException 198

7.3.5 NullReferenceException, IndexOutOfRangeException, and AccessViolationException 199

7.3.6 StackOverflowException 200

7.3.7 OutOfMemoryException 200

7.3.8 ComException, SEHException, and other CLR Exceptions 201

7.3.9 ExecutionEngineException 201

7.4 Designing Custom Exceptions 202

7.5 Exceptions and Performance 203

7.5.1 Tester-Doer Pattern 203

7.5.2 Try-Parse Pattern 204

7.6 Summary 205

Chapter 8: Usage Guidelines 207

8.1 Arrays 207

8.2 Attributes 209

8.3 Collections 211

8.3.1 Collection Parameters 213

8.3.2 Collection Properties and Return Values 214

8.3.3 Choosing Between Arrays and Collections 218

8.3.4 Implementing Custom Collections 219

8.4 ICloneable 221

8.5 IComparable and IEquatable 222

8.6 IDisposable 223

8.7 Object 224

8.7.1 Object.Equals 224

8.7.2 Object.GetHashCode 225

8.7.3 Object.ToString 227

8.8 Uri 228

8.8.1 System.Uri Implementation Guidelines 229

8.9 System.Xml Usage 230

8.10 Equality Operators 231

8.10.1 Equality Operators on Value Types 232

8.10.2 Equality Operators on Reference Types 232

Chapter 9: Common Design Patterns 235

9.1 Aggregate Components 235

9.1.1 Component-Oriented Design 237

9.1.2 Factored Types 240

9.1.3 Aggregate Component Guidelines 240

9.2 The Async Pattern 243

9.2.1 Async Pattern Basic Implementation Example 247

9.3 Dispose Pattern 248

9.3.1 Basic Dispose Pattern 251

9.3.2 Finalizable Types 256

9.4 Factories 260

9.5 Optional Feature Pattern 264

9.6 Template Method 267

9.7 Timeouts 269

9.8 And in the End ... 271

Appendix A: C# Coding Style Conventions 273

A.1 General Style Conventions 274

A.1.1 Brace Usage 274

A.1.2 Space Usage 275

A.1.3 Indent Usage 276

A.2 Naming Conventions 277

A.3 Comments 277

A.4 File Organization 278

Appendix B: Using FxCop to Enforce the Design Guidelines 281

B.1 What Is FxCop? 281

B.2 The Evolution of FxCop 282

B.3 How Does It Work? 283

B.4 FxCop Guideline Coverage 284

B.4.1 FxCop Rules for the Naming Guidelines 284

B.4.2 FxCop Rules for the Type Design Guidelines 293

B.4.3 FxCop Rules for Member Design 296

B.4.4 FxCop Rules for Designing for Extensibility 302

B.4.5 FxCop Rules for Exceptions 303

B.4.6 FxCop Rules for Usage Guidelines 305

B.4.7 FxCop Rules for Design Patterns 309

Appendix C: Sample API Specification 311 Glossary 319 Suggested Reading List 323 Index 327

Foreword

Download the Foreword file related to this title.

Index

Download the Index file related to this title.

Updates

Submit Errata

More Information

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020