Working with Dynamic Object in c# 4.0 Part 1

No.of Views1083
Bookmarked0 times
Downloads 
Votes0
By  Dhananjay Kumar   On  12 Apr 2010 09:04:29
Tag : CSharp , Miscellaneous
This article will give a basic introduction of Dynamic Object in c# 4.0
emailbookmarkadd commentsprint

Images in this article missing? We recently lost them in a site migration. We're working to restore these as you read this. Should you need an image in an emergency, please contact us at info@codegain.com

 

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.

 

Image Loading


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();
        }
    }
}

Sample Output

Image Loading
 
Sign Up to vote for this article
 
About Author
 
Dhananjay Kumar
Occupation-Software Engineer
Company-Infosys Technolgies,Pune
Member Type-Gold
Location-India
Joined date-20 Jul 2009
Home Page-http://dhananjaykumar.net/
Blog Page-http://dhananjaykumar.net/
Dhananjay Kumar is Microsoft MVP on connected system. He blogs at http://dhananjaykumar.net/ . You can follow him http://twitter.com/debugmode_/ and reach him at dhananjay.25july@gmail.com
 
 
Other popularSectionarticles
Comments
There is no comments for this articles.
Leave a Reply
Title:
Display Name:
Email:
(not display in page for the security purphase)
Website:
Message:
Please refresh your screen using Ctrl+F5
If you can't read this number refresh your screen
Please input the anti-spam code that you can read in the image.
^ Scroll to Top