Errata

MCTS Self-Paced Training Kit (Exam 70-536): Microsoft® .NET Framework 2.0—Application Development Foundation

Errata for MCTS Self-Paced Training Kit (Exam 70-536): Microsoft® .NET Framework 2.0—Application Development Foundation

The errata list is a list of errors and their corrections that were found after the product was released.

The following errata were submitted by our customers and have not yet been approved or disproved by the author or editor. They solely represent the opinion of the customer.

Color Key: Serious technical mistake Minor technical mistake Language or formatting error Typo Question Note Update

Version Location Description Submitted by Date submitted
PDF Page 123
Step 7

As stated in Step 7 to call the UncompressFile method the example code calls a DecompressFile method:
' VB
DecompressFile("c:\boot.ini.gz", "c:\boot.ini.test")
// C#
DecompressFile(@"c:\boot.ini.gz", @"c:\boot.ini.test");

This should be:
' VB
UncompressFile("c:\boot.ini.gz", "c:\boot.ini.test")
// C#
UncompressFile(@"c:\boot.ini.gz", @"c:\boot.ini.test");

Frank Swinckels  Jul 26, 2011 
Printed Page 541
18th lft

"The ApplicationSettingsBase class, among others, implements the IApplicationSettingsProvider interface."
Is perhaps not correct.

I would like to confirm the relationship.

Anonymous  Oct 05, 2011 
PDF Page 713
1st attribute at the code example

It is typed that
[PrincipalPermission(SecurityAction.Demand,
Name = @"CONTOSO\Administrator")]

gives access to
"■ Members of the local Administrators group"

No, it gives access to user Administrator

Anonymous  Apr 09, 2012 
PDF Page 985
Question #3, Answer D

"A security exception prior to execution would occur only if the
administrator were running the assembly with a debugger and the request
for UIPermission was removed."

This explanation is wrong.

It should be somehow like:
It would occur if you use SecurityAction.RequestRefuse for UIPermission

Anonymous  Apr 05, 2012