我已经用 WCF 建立了聊天服务。我有标记为 datacontract 属性的类
[DataContract]
public class Message
{
string _sender;
string _content;
DateTime _time;
[DataMember(IsRequired=true)]
public string Sender
{
get { return _sender; }
set {
_sender = value;
}
}
[DataMember(IsRequired = true)]
public string Content
{
get { return _content; }
set {
_content = value;
}
}
[DataMember(IsRequired = true)]
public DateTime Time
{
get { return _time; }
set {
_time = value;
}
}
}
我的服务合同如下
[ServiceContract(Namespace="", SessionMode = SessionMode.Required, CallbackContract = typeof(IChatCallback))]
public interface IChat
{
[OperationContract]
bool Connect(Client client);
[OperationContract(IsOneWay=true, IsInitiating=false, IsTerminating=true)]
void Disconnect();
[OperationContract(IsOneWay = true, IsInitiating = false)]
void Whisper(string target, string message);
}
当我尝试从 VisualStudio 2010 生成客户端代码时,没有生成类 Message。但是当我将服务合同上的方法“Whisper”中的参数“消息”类型更改为消息而不是字符串时,它会生成。
我将参数消息的类型更改为“消息”而不是“字符串”:
[OperationContract(IsOneWay = true, IsInitiating = false)]
void Whisper(string target, Message message);
我有需要 Message 类才能正常工作的回调类。
public interface IChatCallback
{
void RefreshClient(List<Client> clients);
void ReceiveWhisper(Message message);
void ReceiveNotifyClientConnect(Client joinedClient);
void ReceiveNotifyClientDisconnect(Client leaver);
}
问题是为什么标记为 datacontract 属性的类不包含在服务合同的方法参数或返回值中时不会生成。