Hi guys, I have a simple DataContract structured in this way:
[DataMember(EmitDefaultValue = false, IsRequired = true, Name = "TablePath", Order = 1)]
public string TablePath { get; set; }
The Value that I try to insert is something like that:
%PATH%\%SPECIAL%\file.txt
And I receive this message using the WCF Test Client UI
"... is not a valid value for this type." I tried different combinations of characters, and for example something like this works great "%PATH%".
The problem is if there is a combination like "%\".
How I can fix this problem as I will receive any type of characters inside this property?
Thank you in advance.