|
|
Browse by Tags
All Tags » Visual Studio » .NET 3.0 » .NET 2.0 » WCF
-
In order to pass Enum values around to your WCF service operations, then you must put [ServiceKnownType(typeof(Enum))] attribute on the service interface contract, and also add the [EnumMember] attribute to every enum value within your Enumeration data contract.Service contract looks like this...namespace ...
|
|
|