Can you use custom serialization to send System.Type with WCF?
[DataMember]
public Type DataType
I was thinking of somehow before it is sent it is converted to string with .AssemblyQualifiedName and after receiving it is converted back to Type with Type.GetType(assemblyQualifiedName).
Is that possible?