Hi guys, i'm new to WFC and I'm experiencing a problem when I pass my DataContract class:
[DataContract]
public class FileAttachment
{
private byte[] binaryBuffer = null;
private String FileName = string.Empty;
[DataMember]
public byte[] FileBufferByteArray
{
get { return binaryBuffer; }
set { binaryBuffer = value; }
}
[DataMember]
public string FileAttachmentName
{
get { return FileAttachmentName; }
set { FileAttachmentName = value; }
}
}
into the service. I'm constantly getting a System.StackOverflowE
View Complete Post