使用WCF该怎么定义接口?
using System;
using System.Collections.Generic;
using System.Text;
using System.ServiceModel;
using System.Runtime.Serialization;
namespace Seahisoft.Main.Core
{
[ServiceContract]
public interface IUserInfo
{
[????]
string FEnterpriseID { get; set; }
[????]
int? FUserID { get; set; }
}
}
接口中的字段应该用什么关键字定义(就是上面打上四个问号的地方)?类中我知道是用[DataMember]定义
[解决办法]
operationcontract
[解决办法]
服务只能提供操作方法
[解决办法]