null
Loading... Please wait...
FREE SHIPPING on All Unbranded Items LEARN MORE
Print This Page

AOP in .NET (Practical Aspect-Oriented Programming)

List Price: $49.99
SKU:
9781617291142
Quantity:
Minimum Purchase
25 unit(s)
  • Availability: Confirm prior to ordering
  • Branding: minimum 50 pieces (add’l costs below)
  • Check Freight Rates (branded products only)

Branding Options (v), Availability & Lead Times

  • 1-Color Imprint: $2.00 ea.
  • Promo-Page Insert: $2.50 ea. (full-color printed, single-sided page)
  • Belly-Band Wrap: $2.50 ea. (full-color printed)
  • Set-Up Charge: $45 per decoration
FULL DETAILS
  • Availability: Product availability changes daily, so please confirm your quantity is available prior to placing an order.
  • Branded Products: allow 10 business days from proof approval for production. Branding options may be limited or unavailable based on product design or cover artwork.
  • Unbranded Products: allow 3-5 business days for shipping. All Unbranded items receive FREE ground shipping in the US. Inquire for international shipping.
  • RETURNS/CANCELLATIONS: All orders, branded or unbranded, are NON-CANCELLABLE and NON-RETURNABLE once a purchase order has been received.
  • Product Details

    Author:
    Matthew D. Groves
    Format:
    Paperback
    Pages:
    296
    Publisher:
    Manning (June 28, 2013)
    Language:
    English
    ISBN-13:
    9781617291142
    ISBN-10:
    1617291145
    Weight:
    18.32oz
    Dimensions:
    7.38" x 9.25" x 0.7"
    File:
    Eloquence-SimonSchuster_05022026_P10038138_onix30_Complete-20260502.xml
    Folder:
    Eloquence
    List Price:
    $49.99
    Case Pack:
    30
    As low as:
    $44.99
    Publisher Identifier:
    P-SS
    Discount Code:
    G
    Pub Discount:
    37
    Imprint:
    Manning
  • Overview

    Summary

    AOP in .NET introduces aspect-oriented programming to .NET developers and provides practical guidance on how to get the most benefit from this technique in your everyday coding. The book's many examples concentrate on modularizing non-functional requirements that often sprawl throughout object-oriented projects. Even if you've never tried AOP before, you'll appreciate the straightforward introduction using familiar C#-based examples. AOP tools for .NET have now reached the level of practical maturity Java developers have relied on for many years, and you'll explore the leading options, PostSharp, and Castle DynamicProxy.

    About the Technology

    Core concerns that cut across all parts of your application, such as logging or authorization, are difficult to maintain independently. In aspect-oriented programming (AOP) you isolate these cross-cutting concerns into their own classes, disentangling them from business logic. Mature AOP tools like PostSharp and Castle DynamicProxy now offer .NET developers the level of support Java coders have relied on for years.

    About this Book

    AOP in .NET introduces aspect-oriented programming and provides guidance on how to get the most practical benefit from this technique. The book's many examples concentrate on modularizing non-functional requirements that often sprawl throughout object-oriented projects. You'll appreciate its straightforward introduction using familiar C#-based examples.

    This book requires no prior experience with AOP. Readers should know C# or another OO language.

    What's Inside
    • Clear and simple introduction to AOP
    • Maximum benefit with minimal theory
    • PostSharp and Castle DynamicProxy

    Purchase of the print book includes a free eBook in PDF, Kindle, and ePub formats from Manning Publications.

    About the Author

    Matthew D. Groves is a developer with over ten years of professional experience working with C#, ASP.NET, JavaScript, and PHP.

    Table of Contents
      PART 1 GETTING STARTED WITH AOP
    1. Introducing AOP
    2. Acme Car Rental
    3. PART 2 THE FUNDAMENTALSOF AOP
    4. Call this instead: intercepting methods
    5. Before and after: boundary aspects
    6. Get this instead: intercepting locations
    7. Unit testing aspects
    8. PART 3 ADVANCED AOP CONCEPTS
    9. AOP implementation types
    10. Using AOP as an architectural tool
    11. Aspect composition: example and execution