Visual Studio Reformat: MediaBrowser.Common

This commit is contained in:
Erwin de Haan
2019-01-13 20:25:11 +01:00
parent b67c1b933e
commit 106d1d18ed
12 changed files with 22 additions and 26 deletions

View File

@@ -1,9 +1,7 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Threading;
using System.Text;
namespace MediaBrowser.Common.Net
{
@@ -133,7 +131,7 @@ namespace MediaBrowser.Common.Net
TimeoutMs = 20000;
}
public void SetPostData(IDictionary<string,string> values)
public void SetPostData(IDictionary<string, string> values)
{
var strings = values.Keys.Select(key => string.Format("{0}={1}", key, values[key]));
var postContent = string.Join("&", strings.ToArray());