vote up 1 vote down star

I have implemented a ToString() override method for my class in my Webservice and I return a List<myObject>() in a function in a consumer. If I do a .ToString() it returns object Type. How do I tackle this in C#?

Thanks.

flag

71% accept rate
Are you saying you have a .ToString() method that does not return a string? Rename it. – Tomas Lycken May 13 at 14:50
No, it returns object type if I use it in .aspx page . – Greens May 13 at 14:52
I think he's saying that the override doesn't seem to be working correctly when he calls the toString() method on the base class. – mquander May 13 at 14:52

1 Answer

vote up 2 vote down check

When passing objects back & forth in a webservice, it's just passing an XML representations of the public properties of that object. Any methods, overridden or not, do not come with it.

I would recommend making a StringRepresentation property that calls ToString()

public string StringRepresentation
{
    get { return this.ToString(); }
    set { /* Do Nothing, but there has to be a set */ }
}
link|flag
May I knwo why this happens. – Greens May 13 at 14:54
Basically, you can only pass strings over a webservice. So, it compiles your object into XML and passes the XML instead of the actual object. – Matt Grande May 13 at 14:57
Thanks.Makes sense – Greens May 13 at 15:00

Your Answer

Get an OpenID
or

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