Reputation: 4560
I have few different applications among which I'd like to share a C# enum. I can't quite figure out how to share an enum declaration between a regular application and a WCF service.
Here's the situation. I have 2 lightweight C# destop apps and a WCF webservice that all need to share enum values.
Client 1 has
Method1( MyEnum e, string sUserId );
Client 2 has
Method2( MyEnum e, string sUserId );
Webservice has
ServiceMethod1( MyEnum e, string sUserId, string sSomeData);
My initial though was to create a library called Common.dll to encapsulate the enum and then just reference that library in all of the projects where the enum is needed. However, WCF makes things difficult because you need to markup the enum for it to be an integral part of the service. Like this:
[ServiceContract]
[ServiceKnownType(typeof(MyEnum))]
public interface IMyService
{
[OperationContract]
ServiceMethod1( MyEnum e, string sUserId, string sSomeData);
}
[DataContract]
public enum MyEnum{ [EnumMember] red, [EnumMember] green, [EnumMember] blue };
So .... Is there a way to share an enum among a WCF service and other applictions?
Upvotes: 51
Views: 60255
Reputation: 533
I had a quite weird problem and thought it might be interesting to you. I also had problems that I got a connection stop when I used enums in my data contract. It took me quite a while to find out what the real problem was: I used enums with int values assigned. They started by 1 instead of 0. Obviously WCF requires that there is an enum value equal to 0 for serialization. If you don't state any values within your enumeration, an automatic int value mapping will be done for you starting by 0, so everything's fine. But when you copy paste some other enum definition where the 0 value is not assigned you won't get that to your client through WCF - strange but true!
Upvotes: 35
Reputation: 18168
Using the Common library should be fine. Enumerations are serializable and the DataContract attributes are not needed.
See: http://msdn.microsoft.com/en-us/library/ms731923.aspx
Enumeration types. Enumerations, including flag enumerations, are serializable. Optionally, enumeration types can be marked with the DataContractAttribute attribute, in which case every member that participates in serialization must be marked with the EnumMemberAttribute attribute
EDIT: Even so, there should be no issue with having the enum marked as a DataContract and having client libraries using it.
Upvotes: 48
Reputation: 4560
I must have had some issues with an outdated service reference or something. I went back and created a common library containing the enum, and everything works fine. I simply added a using reference to the service interface's file.
using Common;
[ServiceContract]
[ServiceKnownType(typeof(MyEnum))]
public interface IMyService
{
[OperationContract]
ServiceMethod1( MyEnum e, string sUserId, string sSomeData);
}
and I dropped the following:
[DataContract]
public enum MyEnum{ [EnumMember] red, [EnumMember] green, [EnumMember] blue };
I guess since the enum is referenced via ServiceKnownType, it didn't need to be marked up in the external library with [DataContract] or [Enumerator]
Upvotes: 36
Reputation: 9871
you could assign int values to your Enum members and just use int's for transfer and when necessary cast them back into your Enum type
Upvotes: 0