我们可以在抽象类而不是接口上使用服务契约属性吗?
public class Service1 : AbstractService
{
public override string GetData(int value)
{
return string.Format("You entered: {0}", value);
}
}
[ServiceContract]
public abstract class AbstractService
{
[OperationContract]
public abstract string GetData(int value);
[OperationContract]
public CompositeType GetDataUsingDataContract(CompositeType composite)
{
if (composite.BoolValue)
{
composite.StringValue += "Suffix";
}
return composite;
}
}
配置:
<system.serviceModel>
<services>
<service name="WcfService1.Service1" behaviorConfiguration="WcfService1.Service1Behavior">
<!-- Service Endpoints -->
<endpoint address="" binding="wsHttpBinding" contract="WcfService1.AbstractService">
<!--
Upon deployment, the following identity element should be removed or replaced to reflect the
identity under which the deployed service runs. If removed, WCF will infer an appropriate identity
automatically.
-->
<identity>
<dns value="localhost"/>
</identity>
</endpoint>
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="WcfService1.Service1Behavior">
<!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
<serviceMetadata httpGetEnabled="true"/>
<!-- To receive exception details in faults for debugging purposes, set the value below to true. Set to false before deployment to avoid disclosing exception information -->
<serviceDebug includeExceptionDetailInFaults="false"/>
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
如果不可能那么我正在寻找原因。我得到了答案,但答案对我来说并不清楚。
您可以在Abstract类上使用服务合同,但在添加引用时,它将显示错误&#34;如果某个类标有ServiceContractAttribute,则另一个服务类无法从中导出&#34;。这是非常合乎逻辑的,因为它允许它调用哪个派生类方法。
这个陈述不清楚然后另一个服务类无法从中获取&#34;。这很合乎逻辑,好像它允许调用哪个派生类方法。
如果我们在数据合同中包含[ServiceKnownType](在服务合同上)或[KnownType],它将起作用。基本上我们必须告诉WCF序列化/反序列化的内容。
另一个人说如果我们在数据合同中使用 [ServiceKnownType](在服务合同上)或[KnownType]寻找更多的洞察力,如果不可能那么为什么不可能。如果可能的话,用样本场景解释示例代码。感谢
答案 0 :(得分:0)
如果您使用抽象类,它将编译,但在运行时它将抛出一个异常说
继承只能在接口类型中使用。如果一个类用ServiceContractAttribute标记,那么另一个服务类不能从它派生
您可以将普通类与ServiceContractAttribute一起使用。