473,788 Members | 2,868 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

InvokeMember throws an exception

Hi all.
I'm developing a software for Windows Mobile 2003. I have such code:
Control currControl = formControls[ArrayPosition]
[currElement];
if (elementType.Ge tProperty("Item s") != null)
{
Type itemsType =
elementType.Get Property("Items ").PropertyType ;
object itemsObj =
elementType.Inv okeMember("Item s",
BindingFlags.In stance |
BindingFlags.De claredOnly |
BindingFlags.Pu blic |
BindingFlags.No nPublic |

BindingFlags.Ge tProperty,
null, currControl, null);
foreach (XmlNode item in
element.FirstCh ild.ChildNodes)
{
itemsType.Invok eMember("Add",
BindingFlags.In stance |
BindingFlags.Pu blic |

BindingFlags.In vokeMethod,
null, itemsObj, new
Object[] {item.Value});
}
}

The row InvokeMember("I tems",... throws an exception
NotSupportedExc eption. As far as I understand if the property "Items"
could be gotten (elementType.Ge tProperty("Item s") != null) it's should
be possible to invoke it. Did I miss something?
Thanks.
Mykhaylo

May 16 '07 #1
0 1410

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
12036
by: hazz | last post by:
this is a repost with more concise code (well, for me) and better questions (I hope....) . given the following two classes, my intent is to use either Activator.CreateInstance or InvokeMember pass a token into the instantiated class DBPassword and return a string; ************************************** namespace DBPasswordProvider public class DBPassword {
0
3087
by: Alex Zhitlenok | last post by:
Hi, On Google, one can find a lot of statements that Invoke and InvokeMemeber work alike. However, my own experience contradicts this statement. 1. Surprisingly, Invoke and InvokeMember methods work differently! I'm working with some legacy COM. The COM object (CMyCOM) implements an interface that is not dual. The interface has a method, let say, HRESULT Foo(); The corresponded coclass defines an interface
3
8411
by: Russell Smith | last post by:
I am creating an Excel add-in. Please note project type is Shared Add-in vice Excel Workbook. In the OnStartupComplete event handler I am adding a new menu item. I start by getting a reference to the Tools menu. This works fine. Type applicationType = applicationObject.GetType(); CommandBars bars = (CommandBars)applicationType.InvokeMember( "CommandBars", BindingFlags.GetProperty, null, applicationObject, null); CommandBar bar =...
0
1039
by: eirik hoem | last post by:
I have a problem using InvokeMember. I have a client application that loads a set of assemblies runtime. It creates instances of them and calls a method which I specify in a XML file. What I'm calling: t.InvokeMember(widget.InitMethod, BindingFlags.DeclaredOnly |BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.InvokeMethod, null, newWidget, widget.Parameters);
0
973
by: eirik hoem | last post by:
case-block was followed by a ; that's what you get for 13hrs straight ------------------------ I have a problem using InvokeMember. I have a client application that loads a set of assemblies runtime. It creates instances of them and calls a method which I specify in a XML file.
0
1313
by: Pat Ireland | last post by:
I continue to investigate issues with making explicit InvokeMember calls (necessary when dynamically loading classes). My quest lets me use a simple class to invoke another class's member method by normal means and by using the InvokeMember. By examining the underlying il code with ildasm, when attempting to pass by reference, the il code generates a box command so that a pointer to the actual data is passed. This is clearly seen with...
3
2324
by: Patrick Ireland | last post by:
I am dynamically loading a class. One of the methods of the class takes a short * (by reference) argument. However, the InvokeMember call used to invoke the method of the class passings arguments in and object . Since this is a pointer reference being passed it must be invoked in a unsafe {} even thought the dynamically loaded class is a .Net entity. The following is the test code that I am using to try and load a short * into an object:...
0
1225
by: Ralfeus | last post by:
Hi all I have a code for .NET Compact 2.0: if (elementType.GetProperty("Items") != null) { Type itemsType = elementType.GetProperty("Items").PropertyType; object itemsObj = elementType.InvokeMember("Items", BindingFlags.Instance | BindingFlags.DeclaredOnly |
1
1874
by: tommyk | last post by:
I am writing a small program that reads a text file filled with a large number of IP addresses and attempts to add them to IIS so that they will be blocked. For some reason, about one in every five or six ip addresses that I attempt to add to IIS causes an System.Reflection.TargetInvocationException to be thrown. Here is the code that adds the addresses: static void SetIPSecurityProperty(string metabasePath, string member, string item)...
0
10366
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10112
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
7518
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6750
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5399
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5536
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4070
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3675
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2894
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.