vote up 1 vote down star

I have a string property that defines a filename for an xml file. When the user inputs this filename into the property, I have the setter calling a parseXml() function immediatly after setting 'fileName = value' to populate a dataTable with the data from the XML file so it displays in the designer. For some reason, when I have this function call in the property setter, the setter ends up getting called every twice every time I change the property, with the 2nd time being an empty string which causes an error. Why is it doing this?

public String FileName
{
    get { return fileName; }
    set 
    {
        fileName = value;
        parseXmlFile();
    }
}
flag

50% accept rate
Let's see your code – Winston Smith Nov 4 at 20:30
4  
__POST CODE__ – Jason Punyon Nov 4 at 20:30
1  
Without showing us some code, your guess is as good as mine (actually, yours will probably be better.) – Lasse V. Karlsen Nov 4 at 20:30
2  
Did anyone mention that code should be posted? – Manu Nov 4 at 20:32
3  
A side note, this goes against .NET standards. In general, setting properties should have little overhead and not contain too much logic or computations inside. I would have put this as LoadXmlFile(string FileName). A method implies am operation which may change the internal state of the object and might perform heavier processing. – Xaero Nov 4 at 20:37
show 4 more comments

3 Answers

vote up 3 vote down check

Short answer: it shouldn't. More helpful: maybe you cause the second call yourself? Set the debugger on the setter and the second time it is called, inspect the call stack.

link|flag
Thank you, that answers my question. I just wanted to make sure it was a problem in my code and not a conflict in .NET before I wasted too much time debugging when I should be refactoring. – alexD Nov 4 at 20:53
vote up 8 vote down

My initial guess would be that something in parseXml() is calling that setter again. What happens if you remove the call to parseXml()? Have you tried debugging and stepping through the code as it is running to see what exactly is calling the setter the second time?

If you slap a breakpoint on filename = value; and hit it, what does the callstack window show you?

link|flag
1  
The first time the property is called, the fileName and 'value' values are the correct input from the user. The parseXml function is executed with no problems. Immediatly after, it goes through the setter again and now 'value' is the empty string so it resets the fileName to the emptyString and executes parseXml() with an empty fileName and then it causes an error. – alexD Nov 4 at 20:37
2  
And what does the callstack look like on that second write? From where was the setter called? – Lasse V. Karlsen Nov 4 at 20:39
1  
And what does the callstack window show the second time? – Nathan Taylor Nov 4 at 20:39
1  
Put a breakpoint on the set {...}. When it stops there, check teh call stack. You need to figure out who is making teh second request. – Partha Choudhury Nov 4 at 20:40
vote up 0 vote down

As a complete aside to the problem you're having, putting expensive IO operations behind property setters is a little off kilter.

If you want to open up a file and parse stuff etc it would be better to have a separate method named appropriately that does the IO and sets this property (filename) at the end when the method successfully completed its work.

link|flag
3  
Not really an answer to his problem - I said the same thing as a comment on his question. – Xaero Nov 4 at 20:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.