Here is the method signature in the WCF service:
APIMessageList<APISimpleContact> GetMembers(string apiKey, APIContactSearchFilter filter);
APIMessageList inherited from IList . Once I have built a proxy against this WCF service, the class name will be APIMessageListOfAPISimpleContactjHldnYZV.
Why am I not getting: APIMessageListOfAPISimpleContact ?
It adds random text to the end of each APIMessageList object in the interface (there are several of them). They all end with the same number of characters - jHldnYZV. I looked online for possible reasons, but I cannot find any posts about people having this problem.
This is a purely cosmetic problem, but this interface is available to our external customers, so its appearance is important.
Does anyone know why I am getting this problem?
Thank you so much joe
source share