Ask a Question related to ASP.NET General, Design and Development.
-
Lars Nielsen #1
Reflection on COM object.
Hi everybody,
I've run into a problem when using the reflection assembly on COM objects
and been browsing around the net for some while. Apparently a few has asked
the same question though no answer has ever occoured.
This is what I'm trying to do:
I wish to build a function that crawls any COM object (interop). I did
shortly examine the serializer until I realized it's used for translation
and not reflection). Until now it work's quite fine until it returns an
array of strings:
Public Function ReturnAbstractObject(ByVal o As Object) As XmlDocument
Dim type As System.Type
type = o.GetType()
Dim propertyinfo As System.Reflection.PropertyInfo
For Each propertyinfo In type.GetProperties()
If propertyinfo.PropertyType.FullName = "System.String" Then
Dim s As String
s = propertyinfo.GetValue(o, Nothing).ToString() ' HERE IT GOES
WRONG
End If
Next
:
End Function
When returning an array of strings (mind you, the
propertyinfo.GetType().IsArray returns false) I get the following error:
"Parameter count mismatch".
It's the propertyinfo.GetValue(o, Nothing) that raises an error. I cannot
find an example (that works) where the second parameter are used (this is
the Index parameter). I may be wrong in the entire approch, and would gladly
receive any help you guys may offer.
In advance thanks,
Lars Nielsen
[email]ln@NOpentiaSPAM.dk[/email]
(If mailing the answer, - please remove the CAPS from the email)
Lars Nielsen Guest
-
Reflection map?
You know the Opel Sigma demo at Chromelib.com. It uses some kind of reflectionmap that reflects the eviroment when you turn the camera. When I... -
C++ Reflection Problems
Hi I have quite a strange problem that I can't seem to overcome on my own. I have a managed C++ web service which has one webmethod. This method... -
Problem with reflection
Hi there, everyone! I want to create a chrome-like-shader with a reflection-map. So I put a gray texture in its texturelist ... -
reflection and wrapTransform
Hi! is it possible to change the transformation of a reflectionmap to for example cylindrical mapping? this would make it easier to create... -
Self Reflection
Nancy's right, Barbara, except I suspect it may be too late! (Something to keep in mind for next time, though.) Your face in the image is just... -
Nicholas Paldino [.NET/C# MVP] #2
Re: Reflection on COM object.
Lars,
The second parameter should be used for indexers, which is not what you
want to use, a property that exposes an array of strings is a regular
property, not an indexer. You should not use this overload. What is the
COM signature of the property?
--
- Nicholas Paldino [.NET/C# MVP]
- [email]nicholas.paldino@exisconsulting.com[/email]
"Lars Nielsen" <ln@NOpentiaSPAM.dk> wrote in message
news:uCXFOy8SDHA.2256@TK2MSFTNGP11.phx.gbl...asked> Hi everybody,
>
> I've run into a problem when using the reflection assembly on COM objects
> and been browsing around the net for some while. Apparently a few hasgladly> the same question though no answer has ever occoured.
>
> This is what I'm trying to do:
>
> I wish to build a function that crawls any COM object (interop). I did
> shortly examine the serializer until I realized it's used for translation
> and not reflection). Until now it work's quite fine until it returns an
> array of strings:
>
> Public Function ReturnAbstractObject(ByVal o As Object) As XmlDocument
> Dim type As System.Type
> type = o.GetType()
>
> Dim propertyinfo As System.Reflection.PropertyInfo
>
> For Each propertyinfo In type.GetProperties()
>
> If propertyinfo.PropertyType.FullName = "System.String" Then
> Dim s As String
> s = propertyinfo.GetValue(o, Nothing).ToString() ' HERE IT GOES
> WRONG
> End If
>
> Next
> :
> End Function
>
>
> When returning an array of strings (mind you, the
> propertyinfo.GetType().IsArray returns false) I get the following error:
> "Parameter count mismatch".
>
> It's the propertyinfo.GetValue(o, Nothing) that raises an error. I cannot
> find an example (that works) where the second parameter are used (this is
> the Index parameter). I may be wrong in the entire approch, and would> receive any help you guys may offer.
>
> In advance thanks,
>
> Lars Nielsen
> [email]ln@NOpentiaSPAM.dk[/email]
> (If mailing the answer, - please remove the CAPS from the email)
>
>
Nicholas Paldino [.NET/C# MVP] Guest
-
Mattias Sjögren #3
Re: Reflection on COM object.
Lars,
It sounds more like you're seeing a parameterized property (a.k.a.>Until now it work's quite fine until it returns an array of strings:
indexer in C#), that takes an index argument and returns a single
string, as opposed to returning an entire array. That would explain
why IsArray for the property type returns false, and why you get the
exception.
If the property takes an integer argument specifying the index, you
should be able to query it like this
s = propertyinfo.GetValue(o, New Object() {index}).ToString()
You can find out more about the parmeters a property takes by checking
PropertyInfo.GetIndexParameters().
Mattias
--
Mattias Sjögren [MVP] mattias @ mvps.org
[url]http://www.msjogren.net/dotnet/[/url]
Please reply only to the newsgroup.
Mattias Sjögren Guest
-
Mattias Sjögren #4
Re: Reflection on COM object.
Lars,
Not all parameterized properties wrap arrays, so index parameters>However, this does not seem to supply any method to get the length of the
>index. Do you, or anybody else, know any way to extract such a value?
might not be numeric, and there can be more than one. So it's close to
impossible to write generic code that queries such properties without
any knowledge of the implementation.
Mattias
--
Mattias Sjögren [MVP] mattias @ mvps.org
[url]http://www.msjogren.net/dotnet/[/url]
Please reply only to the newsgroup.
Mattias Sjögren Guest
-
Lars Nielsen #5
Re: Reflection on COM object.
Yes, that's what I feared.
Do you know any way to express an (any) Object as XML ?
I'm curious; Is it possible to get the length (or upperbound) from the
index?
By the way, thanks for the help. It has clearifyed many "dimmed" areas.
-- Lars
"Mattias Sjögren" <mattias.dont.want.spam@mvps.org> wrote in message
news:O5wGe1LTDHA.1688@TK2MSFTNGP11.phx.gbl...> Lars,
>>> >However, this does not seem to supply any method to get the length of the
> >index. Do you, or anybody else, know any way to extract such a value?
> Not all parameterized properties wrap arrays, so index parameters
> might not be numeric, and there can be more than one. So it's close to
> impossible to write generic code that queries such properties without
> any knowledge of the implementation.
>
>
>
> Mattias
>
> --
> Mattias Sjögren [MVP] mattias @ mvps.org
> [url]http://www.msjogren.net/dotnet/[/url]
> Please reply only to the newsgroup.
Lars Nielsen Guest
-
Mattias Sjögren #6
Re: Reflection on COM object.
Lars,
No, I don't. Usually COM objects take care of their own persistance>Do you know any way to express an (any) Object as XML ?
and exposes it by implementing one or more of the IPersist interfaces.
I guess you could look for a property called Count or Length or>I'm curious; Is it possible to get the length (or upperbound) from the
>index?
something like that. But that wouldn't work in all situations.
Mattias
--
Mattias Sjögren [MVP] mattias @ mvps.org
[url]http://www.msjogren.net/dotnet/[/url]
Please reply only to the newsgroup.
Mattias Sjögren Guest
-
Lars Nielsen #7
Re: Reflection on COM object.
Mattias,
That will off course pose as a problem when making a general COM object
reflection class (that dumps all values). You must then know something about
the object.
Thank you very much for your help. When my class is done, I will do a repost
as a Q - > A as a help to others that tries the same.
Best regards,
Lars Fløe Nielsen
"Mattias Sjögren" <mattias.dont.want.spam@mvps.org> wrote in message
news:u82FdwQTDHA.3132@tk2msftngp13.phx.gbl...> Lars,
>>> >Do you know any way to express an (any) Object as XML ?
> No, I don't. Usually COM objects take care of their own persistance
> and exposes it by implementing one or more of the IPersist interfaces.
>
>>> >I'm curious; Is it possible to get the length (or upperbound) from the
> >index?
> I guess you could look for a property called Count or Length or
> something like that. But that wouldn't work in all situations.
>
>
>
> Mattias
>
> --
> Mattias Sjögren [MVP] mattias @ mvps.org
> [url]http://www.msjogren.net/dotnet/[/url]
> Please reply only to the newsgroup.
Lars Nielsen Guest



Reply With Quote

