BoxKite.Twitter.Tests.TestableUserSession.CreatePost C# (CSharp) Method

CreatePost() public method

public CreatePost ( string fullUrl, string>.SortedDictionary parameters ) : HttpRequestMessage
fullUrl string
parameters string>.SortedDictionary
return System.Net.Http.HttpRequestMessage
        public HttpRequestMessage CreatePost(string fullUrl, SortedDictionary<string, string> parameters)
        {
            this.receviedParameters = parameters;
            var req = new HttpRequestMessage { Content = new StringContent(contents) }; //grab the supplied error code in setup
            return req;
        }