image

ServiceModel 파일참조 필수

메소드 인터페이스정의

Creating Service Contracts

[ServiceContract]

public interface IService1

 [OperationContract]

 string GetData(int value);

 [OperationContract]

주고받을 데이터정의

Creating Data Contracts

[DataContract]

public class CompositeType


 bool boolValue = true;

 string stringValue = "Hello ";


 [DataMember]

 public bool BoolValue

 {

   get { return boolValue; }

   set { boolValue = value; }

 }


 [DataMember]

 public string StringValue

 {

   get { return stringValue; }

   set { stringValue = value; }

 }

}

+ Recent posts