Get Contact CustomField Data using Connect Web Services for SOAP
Content
I am trying to read the data from a custom field located in contacts.
I am using .net/c# and have run the sample code provided. At this point I am trying to edit the BasicRead.cs to get the value for a custom field in contacts called c$Building. Code block is provided below. When I run it contact.CustomFields just return the value GenericField[], which is not right, I am expecting a building name.
Code Snippet
public void ReadContactIncidentSample() { //Create the Contact and Incident objects Contact contact = new Contact(); Incident incident = new Incident(); //Create and set the
0