Skip to main content

ExpandoObject Class Part-I

ExpandoObject Class


Today I’ll cover the basics of ExpandoObject, which is similar to “dynamic”(covered in last post).

The major dfference in Dynamic and ExpandoObject class is the fact that using an instance of this class, members can be dynamically added and removed at run time.In addition it can be used to get abd set the values of dynamically added members.

The class is a part of System.Dynamic namespace

This class implements the following interfaces.

  • IDynamicMetaObjectProvider
  • IDictionary
  • ICollection>
  • IEnumerable>
  • IEnumerable
  • INotifyPropertyChanged

Example:

dynamic expcheck = new ExpandoObject();

expcheck.Test = " This is Pradeep's Test";

Response.Write(expcheck.Test);

Response.Write(expcheck.Test.GetType());



In the example above, an object of ExpandoObject class is created and and property(“Test”) is added to the object at runtime.

To verify the concept, I print out the values and the output shows the value of the property(“This is Pradeep's Test”) and its type(System.String).


 The expandoObjectClass object can get or set methods,Events of any other functionality that any normal(statically typed) object supports.Th only difference here is whatever the expand object does would be at runtime.

(One of the drawbacks for the developers, in using the expand or dynamic object is no intellisense support in VS-2010.When dynamic or expand is decalred, it is not checked at compile time, rather type checking is done at runtime.Here is should not be misunderstood that there is “No Intellisense support”, in fact there is lot of support.To better understand this, just grab a copy of VS-2010 and experiment).


  
Passing As a Parameter

Instances of the ExpandoObject class can be passed as parameters. These instances are treated as dynamic objects. This means that there is no IntelliSense for object members and there is compiler errors when calling non-existent members. If member that does not exist is called, an exception occurs.

The following code example demonstrates how you can create and use a method to print the names and values of properties.

using System;

using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Dynamic;

namespace WebApplication1

{

public partial class Expando : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
ExpandoCheckMethods();
}
private void ExpandoCheckMethods()
{
dynamic developer, Lead;

developer = new ExpandoObject();
developer.Name = "Pradeep Ptel";
developer.Age = 28;


Lead = new ExpandoObject();
Lead.Name = "Sushil Aggarwal";
Lead.Age = 42;
Lead.TeamSize = 10;

WriteDetails(developer);
// WriteDetails(Lead);

}

private void WriteDetails(dynamic person)
{
// Response.Write(string.Format("{0} is {1} years old.", person.Name, person.Age));// }
Response.Write(string.Format("{0} Manages {1} people", person.Name, person.TeamSize));
}

In the Example above , there would be a runtime exception since the developer object that we are passing as parameter does not have TeamSize Property.

However if we pass “Lead” object the there would be no tuntime exception.

(I recommend, you copy the code and play with it to see how it actually works).


Similar to Dynamic object, I’ll write another post to cover the details of ExpandoObject class soon.

Hope this was Helpful.

Till next time we connect, Happy coding!!

Comments

Popular posts from this blog

Asp.Net 4.0: An Overview-Part-III

This is the last post in the series which will explore the following new features of ASP.Net 4.0  Performance Monitoring for Individual Applications in a Single Worker Process Web.config File Refactoring Permanently Redirecting a Page Expanding the Range of Allowable URLs Performance Monitoring for Individual Applications in a Single Worker Process It is a common practice to host multiple ASP.NET applications in a single worker process, In order to increase the number of Web sites that can be hosted on a single server. This practice results in difficulties for server administrators to identify an individual application that is experiencing problems. ASP.NET 4 introduces new resource-monitoring functionality introduced by the CLR. To enable this functionality, following XML configuration snippet is added to the aspnet.config configuration file.(This file is located in the directory where the .NET Framework is installed ) <?xml version="1.0" encoding="UTF-8"

WCF-REST Services-Part-II

HOW REST is implemented in WCF Part-I of the series explored the REST conceptually and this post will explore how REST is implemented in WCF. For REST implementation in WCF, 2 new attributes namely WebGetAttribute and WebInvokeAttribute are introduced in WCF along with a URI template mechanism that enables you to declare the URI and verb to which each method is going to respond. The infrastructure comes in the form of a binding ( WebHttpBinding ) and a behavior ( WebHttpBehavior ) that provide the correct networking stack for using REST. Also, there is some hosting infrastructure help from a custom Service¬Host ( WebServiceHost ) and a ServiceHostFactory ( WebServiceHostFactory ). How WCF Routes messages WCF routes network messages to methods on instances of the classes defined as implementations of the service. Default behavior ( Dispatching ) for WCF is to do this routing based on the concept of action. For this dispatching to work, an action needs to be present in ev

SOLID principles -Code Samples and Free Ebook

I planned to write code samples for SOLID principle implementations, however I am a firm believer of " NOT RE-INVENTING THE WHEEL ", when all you need is use the wheels and make a new CAR. Going by the ideology, I have found an excellent  SOLID principles FREE -Ebook ( covering all aspects of SOLID design principles, with Code sample). This book is an excellent visual aid to remember these principles, as it uses Motivational posters for explaining SOLID design principles. One additional advantage to the above mentioned book is the Code-Refactoring ebook . Both of these books can be downloaded from this EBOOK download Link Both of these books can be downloaded form here. Hope this book proves useful... Till next we connect.... Happy Learning..