Suppose you have:
public enum Priority : short
{
Low = 100
Normal = 200,
High = 300
}
I'd like to call WCF service with following call
myWCF.call(Priority.Low);
myWCF.call(Priority.High);
myWCF.call(105);
Is that possible to do without rewriting half of WCF stack? I'd prefer as solution where all WCF config settings would be done to enum type.
Thanks.