change pcl's to .netstandard

This commit is contained in:
Luke Pulverenti
2016-11-03 15:07:48 -04:00
parent a2dd144d5c
commit 8fd3bf4217
33 changed files with 209 additions and 241 deletions

View File

@@ -17,7 +17,7 @@ namespace MediaBrowser.Common.Net
/// <value>The URL.</value>
public string Url { get; set; }
public DecompressionMethods? DecompressionMethod { get; set; }
public CompressionMethod? DecompressionMethod { get; set; }
/// <summary>
/// Gets or sets the accept header.
@@ -141,4 +141,10 @@ namespace MediaBrowser.Common.Net
None = 0,
Unconditional = 1
}
public enum CompressionMethod
{
Deflate,
Gzip
}
}