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

Post() private method

Add a post to a sub forum.
private Post ( String subForumName, Post postToAdd ) : System.Result
subForumName String The name sub forum to post in
postToAdd ForumShared.SharedDataTypes.Post The new post to be posted
return System.Result
        internal Result Post(String subForumName, Post postToAdd)
        {
            try
            {
                return webService.Post(subForumName, postToAdd);
            }
            catch (System.ServiceModel.FaultException e)
            {
                throw e;
            }
        }