Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / .NET Framework / New Users / March 2007

Tip: Looking for answers? Try searching our database.

Interitance and PropertyInfo Question

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
lucius - 23 Feb 2007 22:15 GMT
.NET 2.0.

In the below code, when GrandChildThing is instanced, the
GrandChildProperty is never set in line 9 of ChildThing. Visual Studio
2005 IntelliSense says that the instance is GrandChildThing, but there
are no properties in the propInfos count and the property is never
set. Why?

public class BaseThing
{
public string ThingOutput;
}

public class ChldThing : BaseThing
{
internal void DoSomething()
{
string yes="yes";
PropertyInfo[] propInfos = this.GetType().GetProperties(); // count is
zero
foreach (PropertyInfo propertyInfo in this.GetType().GetProperties())
{
    if ( propertyInfo.Name == "GrandChildProperty")
    {
        XmlDocument grandchildXml = new XmlDocument();
        propertyInfo.SetValue( this , grandchildXml , null );
    }
}
}   
}

public class GrandChildThing : ChildThing
{
public XmlDocument GrandChildProperty;

public Work()
{
base.DoSomething();
}
}
Ashot Geodakov - 23 Feb 2007 22:35 GMT
That's because GrandChildProperty in your GrandChildThing is not a property
but a member variable.

Redefine your class like this:

   class GrandChildThing : ChildThing
   {
       private XmlDocument prop;

       public XmlDocument GrandChildProperty // Now it's a property.
       {
           get
           {
               return prop;
           }
           set
           {
               prop = value;
           }
       }

       public void Work()
       {
           base.DoSomething();
       }
   }

> .NET 2.0.
>
[quoted text clipped - 36 lines]
> }
> }
lucius - 24 Feb 2007 23:46 GMT
Then I guess I need to look for member variables and not properties.
Classes must serialize to Java, and member variables do that cleanly
but properties don't. So how can I query a class for member vars with
Reflection?

Thanks.

>That's because GrandChildProperty in your GrandChildThing is not a property
>but a member variable.
>
>Redefine your class like th
Ashot Geodakov - 25 Feb 2007 07:10 GMT
Not sure about Reflection, but System.Type can query for members.

Look in MSDN for System.Type.InvokeMember doc, it's got samples.

> Then I guess I need to look for member variables and not properties.
> Classes must serialize to Java, and member variables do that cleanly
[quoted text clipped - 8 lines]
>>
>>Redefine your class like th
Walter Wang [MSFT] - 26 Feb 2007 02:45 GMT
Hi lucius,

To get the member variables, you need to use Type.GetFields() instead of
Type.GetProperties().

By default Type.GetFields() will return all public fields (including static
public fields). To return private fields and non-static, use another
overload of the Type.GetFields by passing BindingFlags enumeration values:

FieldInfo[] fldInfos = this.GetType().GetFields(BindingFlags.NonPublic |
BindingFlags.Instance);

Hope this helps.

Sincerely,
Walter Wang (wawang@online.microsoft.com, remove 'online.')
Microsoft Online Community Support

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications. If you are using Outlook Express, please make sure you clear the
check box "Tools/Options/Read: Get 300 headers at a time" to see your reply
promptly.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.
Walter Wang [MSFT] - 01 Mar 2007 02:21 GMT
Hi lucius,

I am interested in this issue. Would you mind letting me know the result of
the suggestions? If you need further assistance, feel free to let me know.
I will be more than happy to be of assistance.

Have a great day!

Regards,
Walter Wang (wawang@online.microsoft.com, remove 'online.')
Microsoft Online Community Support

==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.
lucius - 02 Mar 2007 18:10 GMT
Please consider the matter closed, and thanks to you and the MVPs for
help. I was trying to stay with members to make things eaiser to
serialize with Java SOAP interop, but I have now moved to just using
Properties instead.

Thanks again.

>Hi lucius,
>
[quoted text clipped - 14 lines]
>
>This posting is provided "AS IS" with no warranties, and confers no rights.

Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.