ForumClientCore.NetworkLayer.ClientNetworkAdaptor.Reply C# (CSharp) 메소드

Reply() 개인적인 메소드

Add a reply to a post.
private Reply ( Postkey originalPost, Post newReply ) : System.Result
originalPost Postkey The post being replied
newReply ForumShared.SharedDataTypes.Post The new reply post
리턴 System.Result
        internal Result Reply(Postkey originalPost, Post newReply)
        {
            return webService.Reply(originalPost, newReply);
        }