Skip to main content

MCPD: Microsoft .NET Framework 2.0—Application Development Foundation[70-536]

Link to online resource which covers most of the aspect of passing this exam can be found at the following URL.

http://www.publicjoe.co.uk/536/70-536.html

The following points will help you remember some of the important aspect of passing the 70-536 exam.[Application Development Foundation]

  1. The StringBuilder[System.Text namespace] class is used for optimized string concatenation. For more detailed information follow the below url
    http://msdn2.microsoft.com/en-us/library/system.text.stringbuilder(VS.71).aspx
  2. PrincipalPermission is used to gain insight into user's credential. For more info refere the following URL.
    http://msdn2.microsoft.com/en-us/library/system.security.permissions.aspx
  3. The SmtpClient class should be used to send e-mail by using the Simple Mail Transfer Protocol[System.Net.Mail].
  4. Attachment content can be a String, Stream, or file name. You can specify the content in an attachment by using any of the Attachment constructors. For more details refer the following content
    http://msdn2.microsoft.com/en-gb/library/system.net.mail.attachment.aspx
  5. The FileInfo class of System.IO namespace contains the following methods
    Delete(), Move() and Copy(). This does not contain the Rename method.
  6. Using Code access security you can use the OleDbPermission to grant permission to use any OLE DB data sources.
    For more info check out the following url
    http://msdn2.microsoft.com/en-us/library/system.security.codeaccesspermission.aspx
  7. The XmlSerializer serializes and deserializes objects into and from XML documents. The XmlSerializer also enables you to control how objects are encoded into XML. For more info check out the following url
    http://msdn2.microsoft.com/en-us/library/system.xml.serialization.xmlserializer.aspx
  8. TextWriterTraceListener listens to all messages generated by both the Debug and Trace classes. When you add a listener to the Trace.Lsiteners collection, it will listen to messages generated both by Trace and Debug classes
    To add a trace listerner use the following syntax
    Trace.Listeners.Add(new TextWriterTraceListener("trace.txt"))
  9. The IDisposable interface defines a method to release allocated unmanaged resources.

Comments

Anonymous said…
Keep up the good work.

Popular posts from this blog

JavaScript Scope

In this blog post we will dig deeper into various aspects of JavaScript scope.  This is a pretty interesting topic  and also a topic which confuses many beginning JavaScript programmers. Understanding JavaScript scope helps you write bug free programs (hmm.. atleast helps your troubleshoot things easily) Scope control the visibility and lifetimes of variables and parameters.  This is important from the perspective of avoiding naming collisions and provides memory management service. Unlike other languages, JavaScript does not have block level scope.  For e.g. take for instance the following piece of c# code. public void Main () { int a = 5; if (true) { int b = 10; } // This will throw compile time error as b is not defined // and not within the scope of function Main(); Console.WriteLine(b); } If you write the same code in JavaScript, then the value of 'b' will be available outside the 'if' block. The reason for this is JavaScript does no...

JavaScript Function Spaghetti Code

In this post we will have a look at the spaghetti code created by functions and how to avoid them. First lets quickly go through why this is a cause of concern. Problems with Function Spaghetti Code Variables/ functions are added to the global scope The code is not modular There's potential for duplicate function names Difficult to maintain No namespace sense. Let's take for example the following set of functions and check whats the issue with them. // file1.js function saveState(obj) {     // write code here to saveState of some object     alert('file1 saveState'); } // file2.js (remote team or some third party scripts) function saveState(obj, obj2) {      // further code...     alert('file2 saveState"); } Now the problem here is if your application is using saveState() then the execution of saveState() which one to call is determined by the script loading.  The later script overrides same functions already defin...

JavaScript for Web and Library Developers

This is my first blog post on my home domain and in this series of posts I will explore various facets of JavaScript language that will help us become better programmers.  The idea is tear apart the language and understand how to use the features and build libraries like jquery, knockoutjs, backbonejs. The idea is not to replicate this libraries, but understand the inner workings using better JavaScript coding practices, design principles and thereby make the web a better place to visit.. We will be covering the following topics, though not in order and there may be addition to this list. Foundations Patterns Closure this keyword Hoisting Anonymous function Currying Server side JavaScript Canvas etc. Hope you will enjoy this journey with me!