示例#1
0
        /// <summary>
        /// Posts the specified bytes to the specified URI.
        /// </summary>
        /// <param name="uri">The URI to post to.</param>
        /// <param name="postBytes">The bytes to post.</param>
        /// <param name="contentType">The type of the content being posted.</param>
        public string PostBytes(string uri, byte[] postBytes, string contentType)
        {
            NetworkResponse NetworkResponse = Poster.PostBytes(uri, postBytes, contentType, (Dictionary <string, string>)null);

            return(NetworkResponse.ResponseString);
        }