摘要:
using System;using System.ServiceModel;namespace Larryle.Wcf.ServiceContract.Transaction{ [ServiceContract] public interface IHello { [OperationContract] [TransactionFlow(TransactionFlowOption.Mandatory)] void WriteHello(string name); }}using System;using System.Serv... 阅读全文