SIGN UP MEMBER LOGIN:    
ARTICLE

Working with Dynamic Object in C# 4.0: Part I

Posted by Dhananjay Kumar Articles | C# Language February 15, 2010
This article will give a basic introduction of Dynamic Object in C# 4.0.
Reader Level:

Objective

This article will give a basic introduction of Dynamic Object in C# 4.0

DynamicObject class

  1. This provides a base class for specifying dynamic behavior at run time.
  2. This class must be inherited to use.
  3. This class cannot be instantiated.
  4. This class is inside namespace System.Dynamic.
  5. This class implements IDynamicMetaObjectProvider.
  6. This class enables to define which operation can be performed at the run time.
  7. This class enables to decide how to perform operations on dynamic objects.
  8. Own member can be added to class inherited from DynamicObject.

    dynamic1.gif

Override TryInvokeMember Method

  1. It provides the implementation for operations that invoke members.
  2. Class derived from DynamicObject class can override this method to specify dynamic behavior for operation such as calling a method.

This method is defined as below,

public override bool TryInvokeMember(InvokeMemberBinder binder, object[] args, out object result)
 {
 }

There are three arguments for this method

Binder

  1. This argument provides information about dynamic operation.
  2. binder.Name provides the name of the member on which dynamic operation is performed.
  3. Type of this argument is InvokeMemberBinder.

Let us say, myDynamicObject is name of the instance and myDynamicMethod is name of the dynamic method in class inherited from DynamicObject. If you are calling

myDynamicObject. myDynamicMethod then in that case binder.Name = myDynamicMethod

Args

This parameter defines the arguments pass as the input to the method of dynamic class. Let us say myDynamicMethod takes two input parameters int x and string y. so Args parameter will define these two input parameters of the method in dynamic class.

Type: array of System.Object []

Result

This is result of the system invocation.

If result = true then operation is successful.

If result=false then, then runtime binder of language determine the behavior. In most cases it will throw run time exception.

Note: If you override the TryInvokeMember method, the dynamic dispatch system first attempts to determine whatever specified method exists in the class. If it does not find the method , it uses the TryInvokeMember implementation.

Sample

  1. Open Visual Studio 2010 and create a new console application.
  2. Add a class. Give name. I am giving name here as MyDynamicClass
  3. Inherit the class from DynamicObject
  4. Overriding TryInvokeMember method.

MyDynamicClass.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Dynamic ;

namespace DynamicObjectsample
{
    class MyDynamicClass : DynamicObject
    {
       
        public override bool TryInvokeMember(InvokeMemberBinder binder, object[] args, out object result)
        {

            if (string.Equals(binder.Name, "MyMethod"))
            {
 
                Console.WriteLine("U have hacked");
                result = true;
                return true;
            }
            else
            {

                Console.WriteLine(binder.Name + "  Method not present in this  class ");
                result = true;
                return true;
            }
        }

    }
}


If you see the above class, we are overriding TryInvokeMember. We are checking if method name called is MyMethod or not?

Using the MyDynamicClass

namespace DynamicObjectsample

    class Program
    {
        static void Main(string[] args)
        {
            dynamic obj = new MyDynamicClass();
            obj.MyMethod();
            Console.ReadKey();
            obj.Abc();
            Console.ReadKey();
        }
    }
}



Output

dynamic2.gif

Login to add your contents and source code to this article
share this article :
post comment
 
6 Months Free & No Setup Fees ASP.NET Hosting!
Become a Sponsor
PREMIUM SPONSORS
  • Finally – a virtual platform that delivers next-generation Windows Server 2008 Hyper-V virtualization technology from a managed hosting partner you can truly depend on. Visit www.maximumasp.com/max for a FREE 30 day trial. Hurry offer ends soon. Climb aboard the MaxV platform and take advantage of High Availability, Intelligent Monitoring, Recurrent Backups, and Scalability – with no hassle or hidden fees. As a managed hosting partner focused solely on Microsoft technologies since 2000, MaximumASP is uniquely qualified to provide the superior support that our business is built on. Unparalleled expertise with Microsoft technologies lead to working directly with Microsoft as first to offer IIS 7 and SQL 2008 betas in a hosted environment; partnering in the Go Live Program for Hyper-V; and product co-launches built on WS 2008 with Hyper-V technology.
    ceTE software specializes in components for dynamic PDF generation and manipulation. The DynamicPDF™ product line allows you to dynamically generate PDF documents, merge PDF documents and new content to existing PDF documents from within your applications. Visit DynamicPDF here
Team Foundation Server Hosting
Become a Sponsor