Book Image

Mastering LOB Development for Silverlight 5: A Case Study in Action

Book Image

Mastering LOB Development for Silverlight 5: A Case Study in Action

Overview of this book

Microsoft Silverlight is fully established as a powerful tool for creating and delivering Rich Internet Applications and media experiences on the Web. This book will help you dive straight into utilizing Silverlight 5, which now more than ever is a top choice in the Enterprise for building Business Applications. "Mastering LOB Development for Silverlight 5: A Case Study in Action" focuses on the development of a complete Silverlight 5 LOB application, helping you to take advantage of the powerful features available along with expert advice. Fully focused on LOB development, this expert guide takes you from the beginning of designing and implementing a Silverlight 5 LOB application, all the way through to completion. Accompanied by a gradually built upon case study, you will learn about data access via RIA and Web services, architecture with MEF and MVVM applied to LOB development, testing and error control, and much more.With "Mastering LOB Development for Silverlight 5: A Case Study in Action" in hand, you will be fully equipped to expertly develop your own Silverlight Line of Business application, without dwelling on the basics of Enterprise Silverlight development.
Table of Contents (19 chapters)
Mastering LOB Development for Silverlight 5: A Case Study in Action
Credits
Foreword
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Exception handling


Many software development communities have a very large thread in the forum about coding styles horror. Most of the posted code snippets are about exception handling, which shows how difficult this topic is. Therefore, we must talk about exception handling first, along with what to do and what not to do.

Getting started

This part gives you an initial introduction to exception handling in Silverlight and a warm up for all developers who are familiar with this topic.

Try and catch

Let's have a look at the syntax of the easiest expression in exception handling:

try
{
  // Statement
}
catch (FileNotFoundException e)
{
  // Statement
}
catch (IOException)
{
  // Statement
}
catch
{
  // Statement
}

The try block contains the statements that might throw an exception. If no runtime exception occurs, all statements in the try block will be executed; otherwise the flow of control immediately jumps to an associated exception handler, if one is present.

You can specify any type that derives...