示例#1
0
        /// <summary>
        /// Posts the specified object to the specified URI.
        /// </summary>
        /// <param name="uri">The URI to post to.</param>
        /// <param name="postObject">The object to post.</param>
        public string PostObject(string uri, object postObject)
        {
            NetworkResponse networkResponse = Poster.PostObject(uri, postObject, (Dictionary <string, string>)null);

            return(networkResponse.ResponseString);
        }