WCF Conditional Operations in Service Contract
#if SILVERLIGHT // <------------------------------ ( 1 )
// Silverlight Operations
#else // <------------------------------ ( 2 )
// NON Silverlight Operations
#endif
Mark #1 can be converted to
[Conditional ( "SILVERLIGHT" )]
How to convert Mark #2 ( ELSE
Condition [ NON Silverlight ] )