ForumClientCore.NetworkLayer.ClientNetworkAdaptor.Reply C# (CSharp) Méthode

Reply() private méthode

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