WCF and Enum
I have a data contract on the server that looks like:
/// SKU types for party items.
[DataContract()]
public enum SkuTypeEnum
{
[EnumMember()]
NotSpecified,
[EnumMember()]
Other,
[EnumMember()]
Component,
[EnumMember()]
Party,
}
But when I run svcutil and get a client proxy for the call this type shows up as a string. Is there any way that I can see the enum on the client?
Thank you.
Kevin

