Skip to Main Content
C# Cookbook, 2nd Edition
book

C# Cookbook, 2nd Edition

by Jay Hilyard, Stephen Teilhet
January 2006
Intermediate to advanced content levelIntermediate to advanced
1184 pages
43h 23m
English
O'Reilly Media, Inc.
Content preview from C# Cookbook, 2nd Edition
This is the Title of the Book, eMatter Edition
Copyright © 2007 O’Reilly & Associates, Inc. All rights reserved.
480
|
Chapter 8: Diagnostics
8.16 Determining Current AppDomain Settings
Information
Problem
You want to know about the current settings for the AppDomain your code is execut-
ing in to help in debugging various issues with assembly loading, authorization
issues, and startup problems.
Solution
Examine the properties of the AppDomain.CurrentDomain.SetupInformation class to
see the activation settings, the security information for the
AppDomain, associated file
paths like code base and configuration files, assembly binding and policy settings,
and load optimization and shadow copy settings. Get the
AppDomainSetup object with
the current
AppDomain settings information like this:
AppDomainSetup info = AppDomain.CurrentDomain.SetupInformation;
Now the ActivationArguments can be examined to find out things like the code base
and full name of the
AppDomain as well as the corresponding ActivationData and
ActivationContext information:
Console.WriteLine("Current AppDomain Properties:");
if (info.ActivationArguments != null)
{
Figure 8-2. Setting the debugger to call ToString( ) for object display
This is the Title of the Book, eMatter Edition
Copyright © 2007 O’Reilly & Associates, Inc. All rights reserved. ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

C# Cookbook

C# Cookbook

Stephen Teilhet, Jay Hilyard
C# Cookbook

C# Cookbook

Joe Mayo
Head First C#, 4th Edition

Head First C#, 4th Edition

Andrew Stellman, Jennifer Greene

Publisher Resources

ISBN: 0596100639Supplemental ContentCatalog PageErrata