這是我想要生成的代碼文件的一部分。這是一個較舊的WCF項目,所以我不熟悉。有了新的服務項目,我只需單擊右鍵並選擇更新服務參考。需要爲WCF服務創建服務接口類。
using System;
`//-------------------------------------------------------------------------
-----
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.269
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//--------------------------------------------------------------------------
----
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel",
"4.0.0.0")]
[System.ServiceModel.ServiceContractAttribute(ConfigurationName =
"IBusinessService")]
[CLSCompliant(false)]
public interface IBusinessService
{
[System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IBusinessService/Receive_Replenishment_Request", ReplyAction = "http://tempuri.org/IBusinessService/Receive_Replenishment_RequestResponse")]
int Receive_Replenishment_Request(System.Nullable<int> Module, System.Nullable<int> Level, System.Nullable<int> Side, System.Nullable<int> Row, string User);
該文件是在比其具有[的ServiceContract]屬性BusinessService.cs和IBuesinessService.cs一個單獨的項目。
是否有我必須運行的工具來生成服務引用類?我需要更新此服務參考。
目前尚不清楚你想要做什麼。你想生成定義服務的接口嗎?或者你想生成消費者代碼? –