Error: The Name property must be a non-empty string





0/5 (0 vote)
Error: The Name property must be a non-empty string
This issue occurs when
OperationContract
name attribute is defined as empty as follows:
[OperationContract(Name = "")]
To fix it provide string for OperationContract
name attribute as follows.
[OperationContract(Name = "SomeString")]