Skip to content

Commit cef4ff7

Browse files
committed
Updated WinRT project
1 parent 198c05f commit cef4ff7

8 files changed

Lines changed: 31 additions & 7 deletions

File tree

Binary file not shown.
Binary file not shown.

LightBuzz.Azure.Unity/Assets/LightBuzz_Azure/Plugins/Azure/WSA/LightBuzz.Azure.dll.meta

Lines changed: 5 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

LightBuzz.Azure/LightBuzz.Azure.UWP/LightBuzz.Azure.UWP.csproj

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -116,12 +116,6 @@
116116
<Compile Include="..\LightBuzz.Azure\AppServiceTablePredicate.cs">
117117
<Link>AppServiceTablePredicate.cs</Link>
118118
</Compile>
119-
<Compile Include="..\LightBuzz.Azure\LightBuzzCertificateValidation.cs">
120-
<Link>LightBuzzCertificateValidation.cs</Link>
121-
</Compile>
122-
<Compile Include="..\LightBuzz.Azure\LightBuzzHttpsHandler.cs">
123-
<Link>LightBuzzHttpsHandler.cs</Link>
124-
</Compile>
125119
<Compile Include="..\LightBuzz.Azure\LightBuzzMobileServiceClient.cs">
126120
<Link>LightBuzzMobileServiceClient.cs</Link>
127121
</Compile>
512 Bytes
Binary file not shown.

LightBuzz.Azure/LightBuzz.Azure/LightBuzzHttpsHandler.cs

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131

3232
#if !UNITY_WSA
3333

34+
using System;
3435
using System.IO;
3536
using System.Linq;
3637
using System.Net;
@@ -138,6 +139,22 @@ public LightBuzzHttpsHandler(string proxyInfo)
138139
ProxyInfo = proxyInfo;
139140
}
140141

142+
/// <summary>
143+
/// Creates a new LightBuzz secure HTTPS handler with the specified parameters.
144+
/// </summary>
145+
/// <param name="contentType">The Content Type header type.</param>
146+
/// <param name="zumoApiVersion">The ZUMO API version number.</param>
147+
/// <param name="encoding">The encoding of the response message.</param>
148+
/// <param name="requestTimeout">The request timeout value in milliseconds.</param>
149+
public LightBuzzHttpsHandler(string contentType, string zumoApiVersion, Encoding encoding, int requestTimeout)
150+
{
151+
AutomaticDecompression = DecompressionMethods.Deflate;
152+
ContentType = contentType;
153+
ZumoApiVersion = zumoApiVersion;
154+
Encoding = encoding;
155+
RequestTimeout = requestTimeout;
156+
ProxyInfo = string.Empty;
157+
}
141158

142159
/// <summary>
143160
/// Creates a new LightBuzz secure HTTPS handler with the specified parameters.
-2.5 KB
Binary file not shown.

LightBuzz.Azure/LightBuzz.Azure/bin/Release/LightBuzz.Azure.xml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)