ForumClientCore.NetworkLayer.ClientNetworkAdaptor.Reply C# (CSharp) Method

Reply() private method

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
return System.Result
        internal Result Reply(Postkey originalPost, Post newReply)
        {
            return webService.Reply(originalPost, newReply);
        }