chatting 썸네일형 리스트형 [WCF] 간단한 채팅 샘플 ㅁㅁㅁ using System.ServiceModel; namespace TESTWCF_2_Server { //콜백할 인터페이스 이다. 곧 Client 가 된다.. [ServiceContract] public interface ISomeCallback { [OperationContract] void SendMessageToClient(string someStr); } //WCF host에서 구현할 인터페이스 이다. //ServiceContract 에 콜백 인터페이스를 등록 하였다. [ServiceContract(CallbackContract = typeof(ISomeCallback))] public interface ISome { [OperationContract] void StartService(); .. 더보기 이전 1 다음