How to keep the object returned by the web service as ArrayOfString
?
Contextualizing:
I'm giving maintenance in an application that consumes a Web Service, and a certain object would be a List<string>
was being returned as ArrayOfString
. Where did the Update in reference the WebService , the return moved to string[]
what you can do to keep as ArrayOfString
?
It is returning as well :
private string[] motivoInterrupcaoField;
When should return this:
[System.Runtime.Serialization.OptionalFieldAttribute()] private Atendimento.wsAtendimento.ArrayOfString MotivoInterrupcaoField;
Thank you,