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...

WebMatrix-The Swiss Army knife from Microsoft

  What’s more in store for Web developers, ASP.Net 4.5(with full support for HTML 5 , CSS 3 amd Javascript) and to complement it, is the new awesome tool-WebMatrix. WebMatrix combines five products in one, letting you install, develop, optimize, deploy and manage your sites and databases. With support for the latest web standards like HTML5 & CSS3, multiple frameworks like ASP.NET & PHP, and multiple database engines like MySQL & SQL Server ..and what’s even better…it FREE!! ! ( Download Webmatrix ). To learn more about webmatrix, I recomment the following video. WebMatrix-An intro The tools promises a lot and I have already downloaded a copy and started playing with it. Hope the information  here is useful. Till next we connect…. Happy Learning.

ASP.NET 4.5-What's New

.Net Framework 4.5 is here and with this comes the new ASP.Net vNext(C'mon simply ASP.Net 4.5) If you are interested in finding out what's new or how it is going to affect(benefit or give you nightmares with your existing code),click on the link below to explore it. ASP.Net 4.5-Documentation ASP.Net 4.5 with HTML 5, CSS3 and Javascrip t Besides this great tool, there are many enhancements that  I am sure you are going to like, by  watching this video. Create Rich, Data driven web apps using ASP.Net  4.5 WebForms Hope the information is useful, Till Next we connect..... Happy Learning.