I’m using Exchange Web Services to access contact records in a public folder. I need to pull a custom column, “Client Contact Management”, created for a view in that folder. The custom column was created in the user interface.
I’ve already used the ExtendedPropertyDefinition class before on properties that I have created on my own through code. Is that what I’m supposed to use in this case and if so then how do I get the guid for the custom column?

I finally found the answer on this thread from David Sterling on the microsoft exchange server forums. His example (copied below) shows how to do things using EWS directly and using the managed api.
Here is what I did using the managed api for my own problem. The key is using the
DefaultExtendedPropertySet.PublicStringswhich is where outlook stores the custom view column.