Search Unity

Best HTTP Released

Discussion in 'Assets and Asset Store' started by BestHTTP, Sep 11, 2013.

  1. HolyFireGames

    HolyFireGames

    Joined:
    Apr 23, 2014
    Posts:
    134
  2. lumeneo

    lumeneo

    Joined:
    Mar 3, 2014
    Posts:
    60
  3. BestHTTP

    BestHTTP

    Joined:
    Sep 11, 2013
    Posts:
    1,664
  4. AntLewis

    AntLewis

    Joined:
    Feb 2, 2010
    Posts:
    254
    Hey, just bought Best HTTP/2 asset, but getting an error as it can't seem to include the following:

    using BestHTTP.Connections;
    using BestHTTP.Extensions;
    using BestHTTP.Logger;

    ...are these extensions of the base package?

    Thanks
     
  5. BestHTTP

    BestHTTP

    Joined:
    Sep 11, 2013
    Posts:
    1,664
    @AntLewis

    Do you see these errors in Unity or only in your editor(Visual Studio for example)? If the later, you can Regenerate the project files through the Edit/Preferences... menu item: upload_2021-10-14_18-17-0.png
     
  6. AntLewis

    AntLewis

    Joined:
    Feb 2, 2010
    Posts:
    254
    Hey thanks for the response.....so below are the errors are in Unity and the errors above are in Visual Studio
    upload_2021-10-15_10-2-28.png

    I'm using 2019.3.0f6 and I don't see the regenerate project files option. To give you context, I've received the repo from a client using the package which I've purchased, then imported (though it didn't seem to import anything...which I guess makes sense?)

    Cheers
     
  7. BestHTTP

    BestHTTP

    Joined:
    Sep 11, 2013
    Posts:
    1,664
    @AntLewis I don't know what the problem could be, but you can try to delete the Assets\Best HTTP\ folder and import the package again.
     
  8. MrPapayaMan

    MrPapayaMan

    Joined:
    Feb 16, 2021
    Posts:
    42
    Websocket example doesn’t seem to work. Any basic example code for websocket client and server?
     
  9. BestHTTP

    BestHTTP

    Joined:
    Sep 11, 2013
    Posts:
    1,664
    @MrPapayaMan Yes, websocket.org removed their echo demo. The plugin's client example is small and easy to understand and depending on what language and/or framework you want to use, you can find a few too. For example following these examples: https://nicedoc.io/websockets/ws#usage-examples
     
  10. Schneider_RDS

    Schneider_RDS

    Joined:
    Jun 11, 2021
    Posts:
    1
    @BestHTTP We seem to be encountering an issue where, in the event of a response timeout, our app is sending the request a second time. Is that a setting that can be disabled somewhere? I haven't dug through the plugin code yet to determine where it might be happening, but thought I'd check with the source first before spinning my wheels too long.
     
  11. BestHTTP

    BestHTTP

    Joined:
    Sep 11, 2013
    Posts:
    1,664
    @Schneider_RDS The plugin tries again a failed GET request, but it shouldn't a timed out one. I will investigate it.
     
  12. Serhii-Horun

    Serhii-Horun

    Joined:
    Apr 12, 2015
    Posts:
    151
    Hello, BestHTTP team!

    We have a problem. By some reason HTTPResponse.Message is null/empty when we have failed requests(404/501 etc), but it works fine if we have set Proxy
    Code (CSharp):
    1.  HTTPManager.Proxy = new HTTPProxy(new Uri("http://localhost:8888"));
    and use it. So, with proxy it returns error message. In another words, HTTPResponse.Message contains error message only if proxy has been setup.

    Any ideas how to fix that?

    Thanks
     
  13. BestHTTP

    BestHTTP

    Joined:
    Sep 11, 2013
    Posts:
    1,664
    Serhii-Horun likes this.
  14. Serhii-Horun

    Serhii-Horun

    Joined:
    Apr 12, 2015
    Posts:
    151

    Attached Files:

  15. BestHTTP

    BestHTTP

    Joined:
    Sep 11, 2013
    Posts:
    1,664
    Serhii-Horun likes this.
  16. Serhii-Horun

    Serhii-Horun

    Joined:
    Apr 12, 2015
    Posts:
    151
    @BestHTTP Thanks!

    How we can read error message then with HTTP/2 then? For instance, if user makes bad request(trying to use nickname which not match allowed pattern/regex)? We would like to send BadRequest response with error description
     
  17. BestHTTP

    BestHTTP

    Joined:
    Sep 11, 2013
    Posts:
    1,664
    @Serhii-Horun The StatusCode is still there and you can send down a response body to add more detail. So you still can send and receive 404/501/etc. responses.
     
    Serhii-Horun likes this.
  18. Serhii-Horun

    Serhii-Horun

    Joined:
    Apr 12, 2015
    Posts:
    151
    Hi again! Thank you for fast response regarding issue we were faced

    We got one more problem and not sure if that could be related to BestHttp, or that is something else. We have an issue at the moment of switching network from WiFi to 4G. Seems like all connections just stuck(and after 1-2 minutes we get AsyncHTTPException). It works fine if we use only 4g internet from the app start(so, seems not be related to internet speed). We use HTTPRequest only

    Is there any detail we miss? Could it be related to plugin?

    Thanks!

    UPD: it must be related to connection pool
     
    Last edited: Dec 22, 2021
  19. BestHTTP

    BestHTTP

    Joined:
    Sep 11, 2013
    Posts:
    1,664
    @Serhii-Horun

    The plugin doesn't know about the network switch and tries to reuse the pooled connections. Lowering
    HTTPManager.MaxConnectionIdleTime might mitigate this issue.
    I'm going to come up with a function that could be called in these cases to remove all idle connections.
     
    Serhii-Horun likes this.
  20. Serhii-Horun

    Serhii-Horun

    Joined:
    Apr 12, 2015
    Posts:
    151
    @BestHTTP It would be great.

    Any estimated release time for this new feature?

    Thanks!
     
  21. BestHTTP

    BestHTTP

    Joined:
    Sep 11, 2013
    Posts:
    1,664
    IOU_RAY and Serhii-Horun like this.
  22. wechat_os_Qy07am7Wy1_qI2hEgygU9lgVI

    wechat_os_Qy07am7Wy1_qI2hEgygU9lgVI

    Joined:
    Aug 10, 2019
    Posts:
    48
    Hello, I have a problem: when the local package is webgl, demo links to my local socket, and there is no error in the editor, but after the package, it will prompt: referenceerror: runtime is not defined,What should I do?PLS HELP , thanks a lot!!!( u can test with: game.76talk.com(i runned a websocket sever for this(127.0.0.1:8899)))
     

    Attached Files:

  23. BestHTTP

    BestHTTP

    Joined:
    Sep 11, 2013
    Posts:
    1,664
  24. wechat_os_Qy07am7Wy1_qI2hEgygU9lgVI

    wechat_os_Qy07am7Wy1_qI2hEgygU9lgVI

    Joined:
    Aug 10, 2019
    Posts:
    48
  25. TheFluffyMane

    TheFluffyMane

    Joined:
    Feb 8, 2020
    Posts:
    10
    Hello,

    We are using Websockets to connect with a HubConnection to our service hosted on Azure.

    Code (CSharp):
    1.  
    2. var options = new HubOptions { PreferedTransport = TransportTypes.WebSocket };
    3. var hubConnection = new HubConnection(new Uri("https://xxxxxxx.azurewebsites.net/contactsHub"), new JsonProtocol(new JsonDotNetEncoder()), options);
    4. hubConnection.AuthenticationProvider = new CustomAccessTokenAuthenticator(hubConnection, requestedToken.Token);
    5. hubConnection.ReconnectPolicy = new CustomRetryPolicy();
    6.  

    The connection works fine for most of our users.
    However for some rare users, the connection sometimes fails and we get this error message :
    Handshake Request finished Successfully, but the server sent an error. Status Code: 404-Not Found Message: No Connection with that ID


    For these users, the connection usually works fine in 4-5 secondes, but sometimes it fails after around 25 seconds.

    Here is the full logs we got with LogLevel.All :

    Code (JavaScript):
    1.  
    2. 2022-01-21 12:44:19,143 INFO  {"tid":1,"div":"RequestEventHelper","msg":"Processing request event: [RequestEventInfo SourceRequest: https:\/\/xxxxxx.azurewebsites.net\/contactsHub\/negotiate?negotiateVersion=1, Event: StateChange, State: Finished, Progress: 0, ProgressLength: 0, Data: 0]","stack":"  at Core.RequestEventHelper.ProcessQueue () [0x0001f] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:119   at HTTPManager.OnUpdate () [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPManager.cs:414   at HTTPUpdateDelegator.Update () [0x00020] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPUpdateDelegator.cs:171 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 840312576}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658591320600,"ll":"Information","bh":1}
    3. 2022-01-21 12:44:19,163 INFO  {"tid":1,"div":"HubConnection","msg":"Negotiation Request Finished Successfully! Response: {\"negotiateVersion\":1,\"connectionId\":\"aNwyK2C7hMLVytAERh0ObA\",\"connectionToken\":\"xMO-dNGgMr7aBjWUnUXcgA\",\"availableTransports\":[{\"transport\":\"WebSockets\",\"transferFormats\":[\"Text\",\"Binary\"]},{\"transport\":\"ServerSentEvents\",\"transferFormats\":[\"Text\"]},{\"transport\":\"LongPolling\",\"transferFormats\":[\"Text\",\"Binary\"]}]}","stack":"  at SignalRCore.HubConnection.OnNegotiationRequestFinished (HTTPRequest req, HTTPResponse resp) [0x0006e] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\HubConnection.cs:386   at Core.RequestEventHelper.HandleRequestStateChange (Core.RequestEventInfo event) [0x00259] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:345   at Core.RequestEventHelper.ProcessQueue () [0x002f8] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:224   at HTTPManager.OnUpdate () [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPManager.cs:414   at HTTPUpdateDelegator.Update () [0x00020] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPUpdateDelegator.cs:171 ","ctxs":[{"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658591581270,"ll":"Information","bh":1}
    4. 2022-01-21 12:44:19,199 INFO  {"tid":1,"div":"HubConnection","msg":"ConnectImpl - WebSocket","stack":"  at SignalRCore.HubConnection.ConnectImpl (SignalRCore.TransportTypes transport) [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\HubConnection.cs:307   at SignalRCore.HubConnection.OnNegotiationRequestFinished (HTTPRequest req, HTTPResponse resp) [0x00198] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\HubConnection.cs:424   at Core.RequestEventHelper.HandleRequestStateChange (Core.RequestEventInfo event) [0x00259] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:345   at Core.RequestEventHelper.ProcessQueue () [0x002f8] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:224   at HTTPManager.OnUpdate () [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPManager.cs:414   at HTTPUpdateDelegator.Update () [0x00020] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPUpdateDelegator.cs:171 ","ctxs":[{"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658591962810,"ll":"Verbose","bh":1}
    5. 2022-01-21 12:44:19,211 INFO  {"tid":1,"div":"WebSocketTransport","msg":"StartConnect","stack":"  at SignalRCore.Transports.WebSocketTransport.StartConnect () [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\Transports\\WebsocketTransport.cs:29   at SignalRCore.HubConnection.ConnectImpl (SignalRCore.TransportTypes transport) [0x00161] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\HubConnection.cs:350   at SignalRCore.HubConnection.OnNegotiationRequestFinished (HTTPRequest req, HTTPResponse resp) [0x00198] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\HubConnection.cs:424   at Core.RequestEventHelper.HandleRequestStateChange (Core.RequestEventInfo event) [0x00259] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:345   at Core.RequestEventHelper.ProcessQueue () [0x002f8] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:224   at HTTPManager.OnUpdate () [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPManager.cs:414   at HTTPUpdateDelegator.Update () [0x00020] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPUpdateDelegator.cs:171 ","ctxs":[{"TypeName": "WebSocketTransport", "Hash": 696519296}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658592079820,"ll":"Verbose","bh":1}
    6. 2022-01-21 12:44:19,227 INFO  {"tid":1,"div":"WebSocketTransport","msg":"StartConnect connecting to Uri: wss:\/\/xxxxxx.azurewebsites.net\/contactsHub?&id=xMO-dNGgMr7aBjWUnUXcgA&access_token=eyJhbGciOiJSUzI1NiIsImtpZCI6IkRENzQ5RDk5QjkyNkQxRUREMDQ0RkU5RkVDNjQwREIzIiwidHlwIjoiYXQrand0In0.eyJuYmYiOjE2NDI3NjU0NDksImV4cCI6MTY0Mjc2OTA0OSwiaXNzIjoiaHR0cHM6Ly90c3NlcnZlcmlkZW50aXR5c2VydmVyLmF6dXJld2Vic2l0ZXMubmV0IiwiYXVkIjpbIlRoYWxlc0V5ZS5Db250YWN0cyIsIlRoYWxlc0V5ZS5TZXR0aW5ncyJdLCJjbGllbnRfaWQiOiJUaGFsZXNFeWUuVW5pdHkiLCJzdWIiOiI0MzMiLCJhdXRoX3RpbWUiOjE2NDI3NjU0NDksImlkcCI6ImxvY2FsIiwiaWQiOiI0MzMiLCJBcGlHYXRld2F5VXJsIjoiaHR0cHM6Ly90c3NlcnZlcmFwaWdhdGV3YXkuYXp1cmV3ZWJzaXRlcy5uZXQiLCJqdGkiOiIyODc0M0REQkVBOTBCMjczODU1RDMwNkNGQ0Y0NUU0NSIsImlhdCI6MTY0Mjc2NTQ0OSwic2NvcGUiOlsib3BlbmlkIiwicHJvZmlsZSIsIlRoYWxlc0V5ZS5Db250YWN0cy5BUEkiLCJUaGFsZXNFeWUuU2V0dGluZ3MuQVBJIiwib2ZmbGluZV9hY2Nlc3MiXSwiYW1yIjpbInBhc3N3b3JkIl19.p-qAeKGK3gtnBPGn1-6qKynBm33WqRsOpgXoSv6QpybuXFZAwVGww41vKSZ5FBXXwAVt9BiUEKFDpfpE1wgEvoJbKtGOy3bF9ZV9wDcrqmiR3Gz1DaBfbGje2XvZpg5HEs_07YO6YRPG4IWoHpQqrNVKqG_spccxK2452NZ2WiwNCVGw9o8AtdDpHAiblFqzO72DRG7Z17F5L72gCtivCOt-C7e0_zkY_v0P04zeKnGw0AKItlDH6-eSAetAJFEhyftEMbtEgOSvdf6ihtCZdNpWvywKPnnu-BVj6ZNARuj1zfKx4srQ8WWOSpePc2FwjFrtT92vpCTlggl5B_KW1Q","stack":"  at SignalRCore.Transports.WebSocketTransport.StartConnect () [0x000ed] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\Transports\\WebsocketTransport.cs:46   at SignalRCore.HubConnection.ConnectImpl (SignalRCore.TransportTypes transport) [0x00161] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\HubConnection.cs:350   at SignalRCore.HubConnection.OnNegotiationRequestFinished (HTTPRequest req, HTTPResponse resp) [0x00198] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\HubConnection.cs:424   at Core.RequestEventHelper.HandleRequestStateChange (Core.RequestEventInfo event) [0x00259] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:345   at Core.RequestEventHelper.ProcessQueue () [0x002f8] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:224   at HTTPManager.OnUpdate () [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPManager.cs:414   at HTTPUpdateDelegator.Update () [0x00020] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPUpdateDelegator.cs:171 ","ctxs":[{"TypeName": "WebSocketTransport", "Hash": 696519296}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658592212770,"ll":"Verbose","bh":1}
    7. 2022-01-21 12:44:19,249 INFO  {"tid":1,"div":"HubConnection","msg":"Transport_OnStateChanged - oldState: Initial newState: Connecting","stack":"  at SignalRCore.HubConnection.Transport_OnStateChanged (SignalRCore.TransportStates oldState, SignalRCore.TransportStates newState) [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\HubConnection.cs:1015   at SignalRCore.Transports.TransportBase.set_State (SignalRCore.TransportStates value) [0x0002d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\Transports\\TransportBase.cs:30   at SignalRCore.Transports.WebSocketTransport.StartConnect () [0x0023d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\Transports\\WebsocketTransport.cs:65   at SignalRCore.HubConnection.ConnectImpl (SignalRCore.TransportTypes transport) [0x00161] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\HubConnection.cs:350   at SignalRCore.HubConnection.OnNegotiationRequestFinished (HTTPRequest req, HTTPResponse resp) [0x00198] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\HubConnection.cs:424   at Core.RequestEventHelper.HandleRequestStateChange (Core.RequestEventInfo event) [0x00259] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:345   at Core.RequestEventHelper.ProcessQueue () [0x002f8] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:224   at HTTPManager.OnUpdate () [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPManager.cs:414   at HTTPUpdateDelegator.Update () [0x00020] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPUpdateDelegator.cs:171 ","ctxs":[{"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658592453550,"ll":"Verbose","bh":1}
    8. 2022-01-21 12:44:19,262 INFO  {"tid":1,"div":"RequestEventHelper","msg":"Finishing request. Timings: [TimingCollector Start: '12:44:14' \n['Queued': 00:00:00.7803960]\n['DNS Lookup': 00:00:00.2319800]\n['TCP Connection': 00:00:00.0945240]\n['TLS Negotiation': 00:00:02.2695160]\n['Request Sent': 00:00:00.2337270]\n['Waiting (TTFB)': 00:00:00.1293480]\n['Headers': 00:00:00.2299710]\n['Response Received': 00:00:00.1731820]\n['Queued for Dispatch': 00:00:00.1137270]\n['Finished in': 00:00:04.2794090]\n['Callback': 00:00:00.1082850]]","stack":"  at Core.RequestEventHelper.HandleRequestStateChange (Core.RequestEventInfo event) [0x002a7] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:350   at Core.RequestEventHelper.ProcessQueue () [0x002f8] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:224   at HTTPManager.OnUpdate () [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPManager.cs:414   at HTTPUpdateDelegator.Update () [0x00020] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPUpdateDelegator.cs:171 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 840312576}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658592596600,"ll":"Information","bh":1}
    9. 2022-01-21 12:44:19,267 INFO  {"tid":1,"div":"RequestEventHelper","msg":"Processing request event: [RequestEventInfo SourceRequest: wss:\/\/xxxxxx.azurewebsites.net\/contactsHub?&id=xMO-dNGgMr7aBjWUnUXcgA&access_token=eyJhbGciOiJSUzI1NiIsImtpZCI6IkRENzQ5RDk5QjkyNkQxRUREMDQ0RkU5RkVDNjQwREIzIiwidHlwIjoiYXQrand0In0.eyJuYmYiOjE2NDI3NjU0NDksImV4cCI6MTY0Mjc2OTA0OSwiaXNzIjoiaHR0cHM6Ly90c3NlcnZlcmlkZW50aXR5c2VydmVyLmF6dXJld2Vic2l0ZXMubmV0IiwiYXVkIjpbIlRoYWxlc0V5ZS5Db250YWN0cyIsIlRoYWxlc0V5ZS5TZXR0aW5ncyJdLCJjbGllbnRfaWQiOiJUaGFsZXNFeWUuVW5pdHkiLCJzdWIiOiI0MzMiLCJhdXRoX3RpbWUiOjE2NDI3NjU0NDksImlkcCI6ImxvY2FsIiwiaWQiOiI0MzMiLCJBcGlHYXRld2F5VXJsIjoiaHR0cHM6Ly90c3NlcnZlcmFwaWdhdGV3YXkuYXp1cmV3ZWJzaXRlcy5uZXQiLCJqdGkiOiIyODc0M0REQkVBOTBCMjczODU1RDMwNkNGQ0Y0NUU0NSIsImlhdCI6MTY0Mjc2NTQ0OSwic2NvcGUiOlsib3BlbmlkIiwicHJvZmlsZSIsIlRoYWxlc0V5ZS5Db250YWN0cy5BUEkiLCJUaGFsZXNFeWUuU2V0dGluZ3MuQVBJIiwib2ZmbGluZV9hY2Nlc3MiXSwiYW1yIjpbInBhc3N3b3JkIl19.p-qAeKGK3gtnBPGn1-6qKynBm33WqRsOpgXoSv6QpybuXFZAwVGww41vKSZ5FBXXwAVt9BiUEKFDpfpE1wgEvoJbKtGOy3bF9ZV9wDcrqmiR3Gz1DaBfbGje2XvZpg5HEs_07YO6YRPG4IWoHpQqrNVKqG_spccxK2452NZ2WiwNCVGw9o8AtdDpHAiblFqzO72DRG7Z17F5L72gCtivCOt-C7e0_zkY_v0P04zeKnGw0AKItlDH6-eSAetAJFEhyftEMbtEgOSvdf6ihtCZdNpWvywKPnnu-BVj6ZNARuj1zfKx4srQ8WWOSpePc2FwjFrtT92vpCTlggl5B_KW1Q, Event: StateChange, State: Queued, Progress: 0, ProgressLength: 0, Data: 0]","stack":"  at Core.RequestEventHelper.ProcessQueue () [0x0001f] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:119   at HTTPManager.OnUpdate () [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPManager.cs:414   at HTTPUpdateDelegator.Update () [0x00020] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPUpdateDelegator.cs:171 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 229744768}, {"TypeName": "WebSocket", "Hash": -1509620992}, {"TypeName": "WebSocketTransport", "Hash": 696519296}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658592647260,"ll":"Information","bh":1}
    10. 2022-01-21 12:44:19,269 INFO  {"tid":1,"div":"RequestEventHelper","msg":"Processing request event: [RequestEventInfo SourceRequest: wss:\/\/xxxxxx.azurewebsites.net\/contactsHub?&id=xMO-dNGgMr7aBjWUnUXcgA&access_token=eyJhbGciOiJSUzI1NiIsImtpZCI6IkRENzQ5RDk5QjkyNkQxRUREMDQ0RkU5RkVDNjQwREIzIiwidHlwIjoiYXQrand0In0.eyJuYmYiOjE2NDI3NjU0NDksImV4cCI6MTY0Mjc2OTA0OSwiaXNzIjoiaHR0cHM6Ly90c3NlcnZlcmlkZW50aXR5c2VydmVyLmF6dXJld2Vic2l0ZXMubmV0IiwiYXVkIjpbIlRoYWxlc0V5ZS5Db250YWN0cyIsIlRoYWxlc0V5ZS5TZXR0aW5ncyJdLCJjbGllbnRfaWQiOiJUaGFsZXNFeWUuVW5pdHkiLCJzdWIiOiI0MzMiLCJhdXRoX3RpbWUiOjE2NDI3NjU0NDksImlkcCI6ImxvY2FsIiwiaWQiOiI0MzMiLCJBcGlHYXRld2F5VXJsIjoiaHR0cHM6Ly90c3NlcnZlcmFwaWdhdGV3YXkuYXp1cmV3ZWJzaXRlcy5uZXQiLCJqdGkiOiIyODc0M0REQkVBOTBCMjczODU1RDMwNkNGQ0Y0NUU0NSIsImlhdCI6MTY0Mjc2NTQ0OSwic2NvcGUiOlsib3BlbmlkIiwicHJvZmlsZSIsIlRoYWxlc0V5ZS5Db250YWN0cy5BUEkiLCJUaGFsZXNFeWUuU2V0dGluZ3MuQVBJIiwib2ZmbGluZV9hY2Nlc3MiXSwiYW1yIjpbInBhc3N3b3JkIl19.p-qAeKGK3gtnBPGn1-6qKynBm33WqRsOpgXoSv6QpybuXFZAwVGww41vKSZ5FBXXwAVt9BiUEKFDpfpE1wgEvoJbKtGOy3bF9ZV9wDcrqmiR3Gz1DaBfbGje2XvZpg5HEs_07YO6YRPG4IWoHpQqrNVKqG_spccxK2452NZ2WiwNCVGw9o8AtdDpHAiblFqzO72DRG7Z17F5L72gCtivCOt-C7e0_zkY_v0P04zeKnGw0AKItlDH6-eSAetAJFEhyftEMbtEgOSvdf6ihtCZdNpWvywKPnnu-BVj6ZNARuj1zfKx4srQ8WWOSpePc2FwjFrtT92vpCTlggl5B_KW1Q, Event: Resend, State: Initial, Progress: 0, ProgressLength: 0, Data: 0]","stack":"  at Core.RequestEventHelper.ProcessQueue () [0x0001f] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:119   at HTTPManager.OnUpdate () [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPManager.cs:414   at HTTPUpdateDelegator.Update () [0x00020] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPUpdateDelegator.cs:171 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 229744768}, {"TypeName": "WebSocket", "Hash": -1509620992}, {"TypeName": "WebSocketTransport", "Hash": 696519296}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658592663450,"ll":"Information","bh":1}
    11. 2022-01-21 12:44:19,272 INFO  {"tid":1,"div":"HostConnection","msg":"GetNextAvailable - creating new connection, key: wss:\/\/xxxxxx.azurewebsites.net:443 ","stack":"  at Core.HostConnection.GetNextAvailable (HTTPRequest request) [0x00188] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\HostConnection.cs:135   at Core.HostConnection.Send (HTTPRequest request) [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\HostConnection.cs:66   at Core.HostDefinition.Send (HTTPRequest request) [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\HostDefinition.cs:52   at Core.RequestEventHelper.ProcessQueue () [0x0028f] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:202   at HTTPManager.OnUpdate () [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPManager.cs:414   at HTTPUpdateDelegator.Update () [0x00020] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPUpdateDelegator.cs:171 ","ctxs":[{"TypeName": "HostConnection", "Hash": 1345575808, "Host": "xxxxxx.azurewebsites.net", "VariantId": "wss:\/\/xxxxxx.azurewebsites.net:443"},{"TypeName": "HTTPRequest", "Hash": 229744768}, {"TypeName": "WebSocket", "Hash": -1509620992}, {"TypeName": "WebSocketTransport", "Hash": 696519296}, {"TypeName": "HubConnection", "Hash": -1663338496},{"TypeName": "HTTPConnection", "Hash": -1868263936, "ServerAddress": "wss:\/\/xxxxxx.azurewebsites.net:443", "Threaded": true}],"t":637783658592678740,"ll":"Verbose","bh":1}
    12. 2022-01-21 12:44:19,274 INFO  {"tid":1,"div":"RequestEventHelper","msg":"Processing request event: [RequestEventInfo SourceRequest: wss:\/\/xxxxxx.azurewebsites.net\/contactsHub?&id=xMO-dNGgMr7aBjWUnUXcgA&access_token=eyJhbGciOiJSUzI1NiIsImtpZCI6IkRENzQ5RDk5QjkyNkQxRUREMDQ0RkU5RkVDNjQwREIzIiwidHlwIjoiYXQrand0In0.eyJuYmYiOjE2NDI3NjU0NDksImV4cCI6MTY0Mjc2OTA0OSwiaXNzIjoiaHR0cHM6Ly90c3NlcnZlcmlkZW50aXR5c2VydmVyLmF6dXJld2Vic2l0ZXMubmV0IiwiYXVkIjpbIlRoYWxlc0V5ZS5Db250YWN0cyIsIlRoYWxlc0V5ZS5TZXR0aW5ncyJdLCJjbGllbnRfaWQiOiJUaGFsZXNFeWUuVW5pdHkiLCJzdWIiOiI0MzMiLCJhdXRoX3RpbWUiOjE2NDI3NjU0NDksImlkcCI6ImxvY2FsIiwiaWQiOiI0MzMiLCJBcGlHYXRld2F5VXJsIjoiaHR0cHM6Ly90c3NlcnZlcmFwaWdhdGV3YXkuYXp1cmV3ZWJzaXRlcy5uZXQiLCJqdGkiOiIyODc0M0REQkVBOTBCMjczODU1RDMwNkNGQ0Y0NUU0NSIsImlhdCI6MTY0Mjc2NTQ0OSwic2NvcGUiOlsib3BlbmlkIiwicHJvZmlsZSIsIlRoYWxlc0V5ZS5Db250YWN0cy5BUEkiLCJUaGFsZXNFeWUuU2V0dGluZ3MuQVBJIiwib2ZmbGluZV9hY2Nlc3MiXSwiYW1yIjpbInBhc3N3b3JkIl19.p-qAeKGK3gtnBPGn1-6qKynBm33WqRsOpgXoSv6QpybuXFZAwVGww41vKSZ5FBXXwAVt9BiUEKFDpfpE1wgEvoJbKtGOy3bF9ZV9wDcrqmiR3Gz1DaBfbGje2XvZpg5HEs_07YO6YRPG4IWoHpQqrNVKqG_spccxK2452NZ2WiwNCVGw9o8AtdDpHAiblFqzO72DRG7Z17F5L72gCtivCOt-C7e0_zkY_v0P04zeKnGw0AKItlDH6-eSAetAJFEhyftEMbtEgOSvdf6ihtCZdNpWvywKPnnu-BVj6ZNARuj1zfKx4srQ8WWOSpePc2FwjFrtT92vpCTlggl5B_KW1Q, Event: StateChange, State: Initial, Progress: 0, ProgressLength: 0, Data: 0]","stack":"  at Core.RequestEventHelper.ProcessQueue () [0x0001f] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:119   at HTTPManager.OnUpdate () [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPManager.cs:414   at HTTPUpdateDelegator.Update () [0x00020] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPUpdateDelegator.cs:171 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 229744768}, {"TypeName": "WebSocket", "Hash": -1509620992}, {"TypeName": "WebSocketTransport", "Hash": 696519296}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658592702500,"ll":"Information","bh":1}
    13. 2022-01-21 12:44:19,277 INFO  {"tid":1,"div":"RequestEventHelper","msg":"Processing request event: [RequestEventInfo SourceRequest: wss:\/\/xxxxxx.azurewebsites.net\/contactsHub?&id=xMO-dNGgMr7aBjWUnUXcgA&access_token=eyJhbGciOiJSUzI1NiIsImtpZCI6IkRENzQ5RDk5QjkyNkQxRUREMDQ0RkU5RkVDNjQwREIzIiwidHlwIjoiYXQrand0In0.eyJuYmYiOjE2NDI3NjU0NDksImV4cCI6MTY0Mjc2OTA0OSwiaXNzIjoiaHR0cHM6Ly90c3NlcnZlcmlkZW50aXR5c2VydmVyLmF6dXJld2Vic2l0ZXMubmV0IiwiYXVkIjpbIlRoYWxlc0V5ZS5Db250YWN0cyIsIlRoYWxlc0V5ZS5TZXR0aW5ncyJdLCJjbGllbnRfaWQiOiJUaGFsZXNFeWUuVW5pdHkiLCJzdWIiOiI0MzMiLCJhdXRoX3RpbWUiOjE2NDI3NjU0NDksImlkcCI6ImxvY2FsIiwiaWQiOiI0MzMiLCJBcGlHYXRld2F5VXJsIjoiaHR0cHM6Ly90c3NlcnZlcmFwaWdhdGV3YXkuYXp1cmV3ZWJzaXRlcy5uZXQiLCJqdGkiOiIyODc0M0REQkVBOTBCMjczODU1RDMwNkNGQ0Y0NUU0NSIsImlhdCI6MTY0Mjc2NTQ0OSwic2NvcGUiOlsib3BlbmlkIiwicHJvZmlsZSIsIlRoYWxlc0V5ZS5Db250YWN0cy5BUEkiLCJUaGFsZXNFeWUuU2V0dGluZ3MuQVBJIiwib2ZmbGluZV9hY2Nlc3MiXSwiYW1yIjpbInBhc3N3b3JkIl19.p-qAeKGK3gtnBPGn1-6qKynBm33WqRsOpgXoSv6QpybuXFZAwVGww41vKSZ5FBXXwAVt9BiUEKFDpfpE1wgEvoJbKtGOy3bF9ZV9wDcrqmiR3Gz1DaBfbGje2XvZpg5HEs_07YO6YRPG4IWoHpQqrNVKqG_spccxK2452NZ2WiwNCVGw9o8AtdDpHAiblFqzO72DRG7Z17F5L72gCtivCOt-C7e0_zkY_v0P04zeKnGw0AKItlDH6-eSAetAJFEhyftEMbtEgOSvdf6ihtCZdNpWvywKPnnu-BVj6ZNARuj1zfKx4srQ8WWOSpePc2FwjFrtT92vpCTlggl5B_KW1Q, Event: StateChange, State: Processing, Progress: 0, ProgressLength: 0, Data: 0]","stack":"  at Core.RequestEventHelper.ProcessQueue () [0x0001f] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:119   at HTTPManager.OnUpdate () [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPManager.cs:414   at HTTPUpdateDelegator.Update () [0x00020] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPUpdateDelegator.cs:171 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 229744768}, {"TypeName": "WebSocket", "Hash": -1509620992}, {"TypeName": "WebSocketTransport", "Hash": 696519296}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658592718710,"ll":"Information","bh":1}
    14. 2022-01-21 12:44:19,279 INFO  {"tid":1,"div":"ConnectionEventHelper","msg":"Processing connection event: [ConnectionEventInfo SourceConnection: [91150208:https:\/\/xxxxxx.azurewebsites.net:443], Event: StateChange, State: Recycle, ProtocolSupport: Unknown]","stack":"  at Core.ConnectionEventHelper.ProcessQueue () [0x00018] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\ConnectionEvents.cs:113   at HTTPManager.OnUpdate () [0x00007] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPManager.cs:415   at HTTPUpdateDelegator.Update () [0x00020] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPUpdateDelegator.cs:171 ","ctxs":[{"TypeName": "HTTPConnection", "Hash": 91150208, "ServerAddress": "https:\/\/xxxxxx.azurewebsites.net:443", "Threaded": true, "RequestHandler": -1722568192}],"t":637783658592736760,"ll":"Information","bh":1}
    15. 2022-01-21 12:44:19,298 INFO  {"tid":16,"div":"TCPConnector","msg":"'wss:\/\/xxxxxx.azurewebsites.net\/contactsHub?&id=xMO-dNGgMr7aBjWUnUXcgA&access_token=eyJhbGciOiJSUzI1NiIsImtpZCI6IkRENzQ5RDk5QjkyNkQxRUREMDQ0RkU5RkVDNjQwREIzIiwidHlwIjoiYXQrand0In0.eyJuYmYiOjE2NDI3NjU0NDksImV4cCI6MTY0Mjc2OTA0OSwiaXNzIjoiaHR0cHM6Ly90c3NlcnZlcmlkZW50aXR5c2VydmVyLmF6dXJld2Vic2l0ZXMubmV0IiwiYXVkIjpbIlRoYWxlc0V5ZS5Db250YWN0cyIsIlRoYWxlc0V5ZS5TZXR0aW5ncyJdLCJjbGllbnRfaWQiOiJUaGFsZXNFeWUuVW5pdHkiLCJzdWIiOiI0MzMiLCJhdXRoX3RpbWUiOjE2NDI3NjU0NDksImlkcCI6ImxvY2FsIiwiaWQiOiI0MzMiLCJBcGlHYXRld2F5VXJsIjoiaHR0cHM6Ly90c3NlcnZlcmFwaWdhdGV3YXkuYXp1cmV3ZWJzaXRlcy5uZXQiLCJqdGkiOiIyODc0M0REQkVBOTBCMjczODU1RDMwNkNGQ0Y0NUU0NSIsImlhdCI6MTY0Mjc2NTQ0OSwic2NvcGUiOlsib3BlbmlkIiwicHJvZmlsZSIsIlRoYWxlc0V5ZS5Db250YWN0cy5BUEkiLCJUaGFsZXNFeWUuU2V0dGluZ3MuQVBJIiwib2ZmbGluZV9hY2Nlc3MiXSwiYW1yIjpbInBhc3N3b3JkIl19.p-qAeKGK3gtnBPGn1-6qKynBm33WqRsOpgXoSv6QpybuXFZAwVGww41vKSZ5FBXXwAVt9BiUEKFDpfpE1wgEvoJbKtGOy3bF9ZV9wDcrqmiR3Gz1DaBfbGje2XvZpg5HEs_07YO6YRPG4IWoHpQqrNVKqG_spccxK2452NZ2WiwNCVGw9o8AtdDpHAiblFqzO72DRG7Z17F5L72gCtivCOt-C7e0_zkY_v0P04zeKnGw0AKItlDH6-eSAetAJFEhyftEMbtEgOSvdf6ihtCZdNpWvywKPnnu-BVj6ZNARuj1zfKx4srQ8WWOSpePc2FwjFrtT92vpCTlggl5B_KW1Q' - Connecting to xxxxxx.azurewebsites.net:443","stack":"  at Connections.TCPConnector.Connect (HTTPRequest request) [0x0009a] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:402   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 229744768}, {"TypeName": "WebSocket", "Hash": -1509620992}, {"TypeName": "WebSocketTransport", "Hash": 696519296}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658592745970,"ll":"Verbose","bh":1}
    16. 2022-01-21 12:44:19,305 INFO  {"tid":1,"div":"PluginEventHelper","msg":"Processing plugin event: [PluginEventInfo Event: SaveCookieLibrary]","stack":"  at Core.PluginEventHelper.ProcessQueue () [0x0001c] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\PluginEvents.cs:80   at HTTPManager.OnUpdate () [0x00013] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPManager.cs:417   at HTTPUpdateDelegator.Update () [0x00020] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPUpdateDelegator.cs:171 ","ctxs":[],"t":637783658592850330,"ll":"Information","bh":1}
    17. 2022-01-21 12:44:19,314 INFO  {"tid":16,"div":"TCPConnector","msg":"'wss:\/\/xxxxxx.azurewebsites.net\/contactsHub?&id=xMO-dNGgMr7aBjWUnUXcgA&access_token=eyJhbGciOiJSUzI1NiIsImtpZCI6IkRENzQ5RDk5QjkyNkQxRUREMDQ0RkU5RkVDNjQwREIzIiwidHlwIjoiYXQrand0In0.eyJuYmYiOjE2NDI3NjU0NDksImV4cCI6MTY0Mjc2OTA0OSwiaXNzIjoiaHR0cHM6Ly90c3NlcnZlcmlkZW50aXR5c2VydmVyLmF6dXJld2Vic2l0ZXMubmV0IiwiYXVkIjpbIlRoYWxlc0V5ZS5Db250YWN0cyIsIlRoYWxlc0V5ZS5TZXR0aW5ncyJdLCJjbGllbnRfaWQiOiJUaGFsZXNFeWUuVW5pdHkiLCJzdWIiOiI0MzMiLCJhdXRoX3RpbWUiOjE2NDI3NjU0NDksImlkcCI6ImxvY2FsIiwiaWQiOiI0MzMiLCJBcGlHYXRld2F5VXJsIjoiaHR0cHM6Ly90c3NlcnZlcmFwaWdhdGV3YXkuYXp1cmV3ZWJzaXRlcy5uZXQiLCJqdGkiOiIyODc0M0REQkVBOTBCMjczODU1RDMwNkNGQ0Y0NUU0NSIsImlhdCI6MTY0Mjc2NTQ0OSwic2NvcGUiOlsib3BlbmlkIiwicHJvZmlsZSIsIlRoYWxlc0V5ZS5Db250YWN0cy5BUEkiLCJUaGFsZXNFeWUuU2V0dGluZ3MuQVBJIiwib2ZmbGluZV9hY2Nlc3MiXSwiYW1yIjpbInBhc3N3b3JkIl19.p-qAeKGK3gtnBPGn1-6qKynBm33WqRsOpgXoSv6QpybuXFZAwVGww41vKSZ5FBXXwAVt9BiUEKFDpfpE1wgEvoJbKtGOy3bF9ZV9wDcrqmiR3Gz1DaBfbGje2XvZpg5HEs_07YO6YRPG4IWoHpQqrNVKqG_spccxK2452NZ2WiwNCVGw9o8AtdDpHAiblFqzO72DRG7Z17F5L72gCtivCOt-C7e0_zkY_v0P04zeKnGw0AKItlDH6-eSAetAJFEhyftEMbtEgOSvdf6ihtCZdNpWvywKPnnu-BVj6ZNARuj1zfKx4srQ8WWOSpePc2FwjFrtT92vpCTlggl5B_KW1Q' - Buffer sizes - Send: 66560 Receive: 2097152 Blocking: True","stack":"  at Connections.TCPConnector.Connect (HTTPRequest request) [0x0011e] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:409   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 229744768}, {"TypeName": "WebSocket", "Hash": -1509620992}, {"TypeName": "WebSocketTransport", "Hash": 696519296}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658592888890,"ll":"Verbose","bh":1}
    18. 2022-01-21 12:44:19,333 INFO  {"tid":13,"div":"DefaultIOService","msg":"DirectoryExists path: '\/storage\/emulated\/0\/Android\/data\/com.xxx.xxx\/files\/Cookies' exists: True","stack":"  at PlatformSupport.FileSystem.DefaultIOService.DirectoryExists (System.String path) [0x00019] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\FileSystem\\DefaultIOService.cs:41   at Cookies.CookieJar.Persist () [0x00036] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Cookies\\CookieJar.cs:242   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass4_0.<RunShortLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:83   at System.Threading.QueueUserWorkItemCallback.WaitCallback_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.QueueUserWorkItemCallback.System.Threading.IThreadPoolWorkItem.ExecuteWorkItem () [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadPoolWorkQueue.Dispatch () [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading._ThreadPoolWaitCallback.PerformWaitCallback () [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[],"t":637783658592971440,"ll":"Verbose","bh":1}
    19. 2022-01-21 12:44:19,359 INFO  {"tid":13,"div":"DefaultIOService","msg":"CreateFileStream path: '\/storage\/emulated\/0\/Android\/data\/com.xxx.xxx\/files\/Cookies\/Library' mode: Create","stack":"  at PlatformSupport.FileSystem.DefaultIOService.CreateFileStream (System.String path, PlatformSupport.FileSystem.FileStreamModes mode) [0x00012] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\FileSystem\\DefaultIOService.cs:12   at Cookies.CookieJar.Persist () [0x0005c] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Cookies\\CookieJar.cs:245   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass4_0.<RunShortLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:83   at System.Threading.QueueUserWorkItemCallback.WaitCallback_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.QueueUserWorkItemCallback.System.Threading.IThreadPoolWorkItem.ExecuteWorkItem () [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadPoolWorkQueue.Dispatch () [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading._ThreadPoolWaitCallback.PerformWaitCallback () [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[],"t":637783658593284450,"ll":"Verbose","bh":1}
    20. 2022-01-21 12:44:19,410 INFO  {"tid":16,"div":"TcpClient","msg":"Connected to xxxxxx:443","stack":"  at PlatformSupport.TcpClient.General.TcpClient.Connect (System.Net.IPAddress[] ipAddresses, System.Int32 port, HTTPRequest request) [0x000f4] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\TcpClient\\TcpClient.cs:507   at Connections.TCPConnector.Connect (HTTPRequest request) [0x0029b] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:457   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[],"t":637783658594044580,"ll":"Information","bh":1}
    21. 2022-01-21 12:44:19,436 INFO  {"tid":16,"div":"TCPConnector","msg":"Connected to xxxxxx.azurewebsites.net:443","stack":"  at Connections.TCPConnector.Connect (HTTPRequest request) [0x00303] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:469   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 229744768}, {"TypeName": "WebSocket", "Hash": -1509620992}, {"TypeName": "WebSocketTransport", "Hash": 696519296}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658594081500,"ll":"Information","bh":1}
    22. 2022-01-21 12:44:19,462 INFO  {"tid":16,"div":"TlsClientProtocol","msg":"Connect","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00058] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:87   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 229744768}, {"TypeName": "WebSocket", "Hash": -1509620992}, {"TypeName": "WebSocketTransport", "Hash": 696519296}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658594388900,"ll":"Verbose","bh":1}
    23. 2022-01-21 12:44:19,483 INFO  {"tid":16,"div":"TlsClientProtocol","msg":"SendClientHelloMessage","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.SendClientHelloMessage () [0x00017] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:860   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x0014a] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:114   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 229744768}, {"TypeName": "WebSocket", "Hash": -1509620992}, {"TypeName": "WebSocketTransport", "Hash": 696519296}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658594460830,"ll":"Verbose","bh":1}
    24. 2022-01-21 12:44:19,502 INFO  {"tid":16,"div":"TlsProtocol","msg":"BlockForHandshake mConnectionState: 1","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00023] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:267   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 229744768}, {"TypeName": "WebSocket", "Hash": -1509620992}, {"TypeName": "WebSocketTransport", "Hash": 696519296}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658594807980,"ll":"Verbose","bh":1}
    25. 2022-01-21 12:44:19,573 INFO  {"tid":16,"div":"TlsProtocol","msg":"ProcessHandshakeQueue queue.Available: 3970","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0001d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:409   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 229744768}, {"TypeName": "WebSocket", "Hash": -1509620992}, {"TypeName": "WebSocketTransport", "Hash": 696519296}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658595349170,"ll":"Verbose","bh":1}
    26. 2022-01-21 12:44:19,601 INFO  {"tid":16,"div":"TlsClientProtocol","msg":"HandleHandshakeMessage 2","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.HandleHandshakeMessage (System.Byte type, System.IO.MemoryStream buf) [0x00015] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:152   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0011e] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:459   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 229744768}, {"TypeName": "WebSocket", "Hash": -1509620992}, {"TypeName": "WebSocketTransport", "Hash": 696519296}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658595689660,"ll":"Verbose","bh":1}
    27. 2022-01-21 12:44:19,613 INFO  {"tid":16,"div":"TlsClientProtocol","msg":"ReceiveServerHelloMessage server_version: TLS 1.2","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.ReceiveServerHelloMessage (System.IO.MemoryStream buf) [0x000a9] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:635   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.HandleHandshakeMessage (System.Byte type, System.IO.MemoryStream buf) [0x002aa] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:278   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0011e] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:459   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 229744768}, {"TypeName": "WebSocket", "Hash": -1509620992}, {"TypeName": "WebSocketTransport", "Hash": 696519296}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658595975970,"ll":"Verbose","bh":1}
    28. 2022-01-21 12:44:19,619 INFO  {"tid":16,"div":"TlsClientProtocol","msg":"ReceiveServerHelloMessage selectedCipherSuite: C030","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.ReceiveServerHelloMessage (System.IO.MemoryStream buf) [0x001aa] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:664   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.HandleHandshakeMessage (System.Byte type, System.IO.MemoryStream buf) [0x002aa] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:278   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0011e] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:459   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 229744768}, {"TypeName": "WebSocket", "Hash": -1509620992}, {"TypeName": "WebSocketTransport", "Hash": 696519296}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658596096210,"ll":"Verbose","bh":1}
    29. 2022-01-21 12:44:19,626 INFO  {"tid":16,"div":"TlsClientProtocol","msg":"ReceiveServerHelloMessage selectedCompressionMethod: 0","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.ReceiveServerHelloMessage (System.IO.MemoryStream buf) [0x0021f] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:677   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.HandleHandshakeMessage (System.Byte type, System.IO.MemoryStream buf) [0x002aa] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:278   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0011e] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:459   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 229744768}, {"TypeName": "WebSocket", "Hash": -1509620992}, {"TypeName": "WebSocketTransport", "Hash": 696519296}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658596157770,"ll":"Verbose","bh":1}
    30. 2022-01-21 12:44:19,632 INFO  {"tid":16,"div":"TlsClientProtocol","msg":"ReceiveServerHelloMessage mServerExtensions: 23","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.ReceiveServerHelloMessage (System.IO.MemoryStream buf) [0x00349] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:749   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.HandleHandshakeMessage (System.Byte type, System.IO.MemoryStream buf) [0x002aa] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:278   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0011e] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:459   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 229744768}, {"TypeName": "WebSocket", "Hash": -1509620992}, {"TypeName": "WebSocketTransport", "Hash": 696519296}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658596232900,"ll":"Verbose","bh":1}
    31. 2022-01-21 12:44:19,638 INFO  {"tid":16,"div":"TlsProtocol","msg":"InvalidateSession","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.InvalidateSession () [0x00015] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:956   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.HandleHandshakeMessage (System.Byte type, System.IO.MemoryStream buf) [0x0031a] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:292   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0011e] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:459   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 229744768}, {"TypeName": "WebSocket", "Hash": -1509620992}, {"TypeName": "WebSocketTransport", "Hash": 696519296}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658596295020,"ll":"Verbose","bh":1}
    32. 2022-01-21 12:44:19,643 INFO  {"tid":16,"div":"TlsProtocol","msg":"ProcessHandshakeQueue queue.Available: 3885","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0001d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:409   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 229744768}, {"TypeName": "WebSocket", "Hash": -1509620992}, {"TypeName": "WebSocketTransport", "Hash": 696519296}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658596353300,"ll":"Verbose","bh":1}
    33. 2022-01-21 12:44:19,652 INFO  {"tid":16,"div":"TlsClientProtocol","msg":"HandleHandshakeMessage 11","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.HandleHandshakeMessage (System.Byte type, System.IO.MemoryStream buf) [0x00015] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:152   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0011e] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:459   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 229744768}, {"TypeName": "WebSocket", "Hash": -1509620992}, {"TypeName": "WebSocketTransport", "Hash": 696519296}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658596405390,"ll":"Verbose","bh":1}
    34. 2022-01-21 12:44:19,677 INFO  {"tid":16,"div":"TlsClientProtocol","msg":"HandleSupplementalData","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.HandleSupplementalData (System.Collections.IList serverSupplementalData) [0x00015] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:594   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.HandleHandshakeMessage (System.Byte type, System.IO.MemoryStream buf) [0x00136] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:181   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0011e] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:459   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 229744768}, {"TypeName": "WebSocket", "Hash": -1509620992}, {"TypeName": "WebSocketTransport", "Hash": 696519296}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658596459860,"ll":"Verbose","bh":1}
    35. 2022-01-21 12:44:19,698 INFO  {"tid":16,"div":"TlsProtocol","msg":"ProcessHandshakeQueue queue.Available: 337","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0001d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:409   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 229744768}, {"TypeName": "WebSocket", "Hash": -1509620992}, {"TypeName": "WebSocketTransport", "Hash": 696519296}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658596834920,"ll":"Verbose","bh":1}
    36. 2022-01-21 12:44:19,711 INFO  {"tid":16,"div":"TlsClientProtocol","msg":"HandleHandshakeMessage 12","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.HandleHandshakeMessage (System.Byte type, System.IO.MemoryStream buf) [0x00015] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:152   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0011e] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:459   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 229744768}, {"TypeName": "WebSocket", "Hash": -1509620992}, {"TypeName": "WebSocketTransport", "Hash": 696519296}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658596891390,"ll":"Verbose","bh":1}
    37. 2022-01-21 12:44:19,741 INFO  {"tid":16,"div":"TlsProtocol","msg":"ProcessHandshakeQueue queue.Available: 4","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0001d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:409   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 229744768}, {"TypeName": "WebSocket", "Hash": -1509620992}, {"TypeName": "WebSocketTransport", "Hash": 696519296}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658597286320,"ll":"Verbose","bh":1}
    38. 2022-01-21 12:44:19,780 INFO  {"tid":16,"div":"TlsClientProtocol","msg":"HandleHandshakeMessage 14","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.HandleHandshakeMessage (System.Byte type, System.IO.MemoryStream buf) [0x00015] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:152   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0011e] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:459   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 229744768}, {"TypeName": "WebSocket", "Hash": -1509620992}, {"TypeName": "WebSocketTransport", "Hash": 696519296}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658597358690,"ll":"Verbose","bh":1}
    39. 2022-01-21 12:44:19,795 INFO  {"tid":16,"div":"TlsClientProtocol","msg":"SendClientKeyExchangeMessage","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.SendClientKeyExchangeMessage () [0x00015] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:958   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.HandleHandshakeMessage (System.Byte type, System.IO.MemoryStream buf) [0x004f1] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:401   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0011e] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:459   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 229744768}, {"TypeName": "WebSocket", "Hash": -1509620992}, {"TypeName": "WebSocketTransport", "Hash": 696519296}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658597643970,"ll":"Verbose","bh":1}
    40. 2022-01-21 12:44:19,842 INFO  {"tid":16,"div":"DefaultTlsCipherFactory","msg":"CreateCipher: AES_256_GCM","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.DefaultTlsCipherFactory.CreateCipher (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsContext context, System.Int32 encryptionAlgorithm, System.Int32 macAlgorithm) [0x0031a] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\DefaultTlsCipherFactory.cs:73   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.AbstractTlsClient.GetCipher () [0x00019] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\AbstractTlsClient.cs:307   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.HandleHandshakeMessage (System.Byte type, System.IO.MemoryStream buf) [0x00573] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:417   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0011e] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:459   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 229744768}, {"TypeName": "WebSocket", "Hash": -1509620992}, {"TypeName": "WebSocketTransport", "Hash": 696519296}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658598331630,"ll":"Verbose","bh":1}
    41. 2022-01-21 12:44:19,852 INFO  {"tid":16,"div":"TlsProtocol","msg":"SendChangeCipherSpecMessage","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SendChangeCipherSpecMessage () [0x00015] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:1061   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.HandleHandshakeMessage (System.Byte type, System.IO.MemoryStream buf) [0x0061b] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:446   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0011e] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:459   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 229744768}, {"TypeName": "WebSocket", "Hash": -1509620992}, {"TypeName": "WebSocketTransport", "Hash": 696519296}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658598430690,"ll":"Verbose","bh":1}
    42. 2022-01-21 12:44:19,865 INFO  {"tid":16,"div":"TlsProtocol","msg":"SendFinishedMessage","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SendFinishedMessage () [0x00015] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:1071   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.HandleHandshakeMessage (System.Byte type, System.IO.MemoryStream buf) [0x00622] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:447   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0011e] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:459   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 229744768}, {"TypeName": "WebSocket", "Hash": -1509620992}, {"TypeName": "WebSocketTransport", "Hash": 696519296}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658598488450,"ll":"Verbose","bh":1}
    43. 2022-01-21 12:44:19,884 INFO  {"tid":16,"div":"TlsProtocol","msg":"BlockForHandshake mConnectionState: 13","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00023] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:267   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 229744768}, {"TypeName": "WebSocket", "Hash": -1509620992}, {"TypeName": "WebSocketTransport", "Hash": 696519296}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658598556710,"ll":"Verbose","bh":1}
    44. 2022-01-21 12:44:39,699 INFO  {"tid":1,"div":"RequestEventHelper","msg":"AbortRequestWhenTimedOut - Request timed out. CurrentUri: wss:\/\/xxxxxx.azurewebsites.net\/contactsHub?&id=xMO-dNGgMr7aBjWUnUXcgA&access_token=eyJhbGciOiJSUzI1NiIsImtpZCI6IkRENzQ5RDk5QjkyNkQxRUREMDQ0RkU5RkVDNjQwREIzIiwidHlwIjoiYXQrand0In0.eyJuYmYiOjE2NDI3NjU0NDksImV4cCI6MTY0Mjc2OTA0OSwiaXNzIjoiaHR0cHM6Ly90c3NlcnZlcmlkZW50aXR5c2VydmVyLmF6dXJld2Vic2l0ZXMubmV0IiwiYXVkIjpbIlRoYWxlc0V5ZS5Db250YWN0cyIsIlRoYWxlc0V5ZS5TZXR0aW5ncyJdLCJjbGllbnRfaWQiOiJUaGFsZXNFeWUuVW5pdHkiLCJzdWIiOiI0MzMiLCJhdXRoX3RpbWUiOjE2NDI3NjU0NDksImlkcCI6ImxvY2FsIiwiaWQiOiI0MzMiLCJBcGlHYXRld2F5VXJsIjoiaHR0cHM6Ly90c3NlcnZlcmFwaWdhdGV3YXkuYXp1cmV3ZWJzaXRlcy5uZXQiLCJqdGkiOiIyODc0M0REQkVBOTBCMjczODU1RDMwNkNGQ0Y0NUU0NSIsImlhdCI6MTY0Mjc2NTQ0OSwic2NvcGUiOlsib3BlbmlkIiwicHJvZmlsZSIsIlRoYWxlc0V5ZS5Db250YWN0cy5BUEkiLCJUaGFsZXNFeWUuU2V0dGluZ3MuQVBJIiwib2ZmbGluZV9hY2Nlc3MiXSwiYW1yIjpbInBhc3N3b3JkIl19.p-qAeKGK3gtnBPGn1-6qKynBm33WqRsOpgXoSv6QpybuXFZAwVGww41vKSZ5FBXXwAVt9BiUEKFDpfpE1wgEvoJbKtGOy3bF9ZV9wDcrqmiR3Gz1DaBfbGje2XvZpg5HEs_07YO6YRPG4IWoHpQqrNVKqG_spccxK2452NZ2WiwNCVGw9o8AtdDpHAiblFqzO72DRG7Z17F5L72gCtivCOt-C7e0_zkY_v0P04zeKnGw0AKItlDH6-eSAetAJFEhyftEMbtEgOSvdf6ihtCZdNpWvywKPnnu-BVj6ZNARuj1zfKx4srQ8WWOSpePc2FwjFrtT92vpCTlggl5B_KW1Q","stack":"  at Core.RequestEventHelper.AbortRequestWhenTimedOut (System.DateTime now, System.Object context) [0x0003f] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:248   at Extensions.Timer.Process () [0x0003d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Extensions\\Timer.cs:67   at HTTPManager.OnUpdate () [0x00019] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPManager.cs:419   at HTTPUpdateDelegator.Update () [0x00020] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPUpdateDelegator.cs:171 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 229744768}, {"TypeName": "WebSocket", "Hash": -1509620992}, {"TypeName": "WebSocketTransport", "Hash": 696519296}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658796790170,"ll":"Information","bh":1}
    45. 2022-01-21 12:44:39,707 INFO  {"tid":1,"div":"HTTPRequest","msg":"Abort request!","stack":"  at HTTPRequest.VerboseLogging (System.String str) [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1513   at HTTPRequest.Abort () [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1460   at Core.RequestEventHelper.AbortRequestWhenTimedOut (System.DateTime now, System.Object context) [0x0006c] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:249   at Extensions.Timer.Process () [0x0003d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Extensions\\Timer.cs:67   at HTTPManager.OnUpdate () [0x00019] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPManager.cs:419   at HTTPUpdateDelegator.Update () [0x00020] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPUpdateDelegator.cs:171 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 229744768}, {"TypeName": "WebSocket", "Hash": -1509620992}, {"TypeName": "WebSocketTransport", "Hash": 696519296}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658797026410,"ll":"Verbose","bh":1}
    46. 2022-01-21 12:44:39,709 INFO  {"tid":1,"div":"HostConnection","msg":"CloseConnectionAfterInactivity - [[91150208:https:\/\/xxxxxx.azurewebsites.net:443]] Closing! State: Free, Now: 01\/21\/2022 12:44:39, LastProcessTime: 21\/01\/2022 12:44:19, KeepAliveTime: 00:00:20","stack":"  at Core.HostConnection.CloseConnectionAfterInactivity (System.DateTime now, System.Object context) [0x00035] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\HostConnection.cs:184   at Extensions.Timer.Process () [0x0003d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Extensions\\Timer.cs:67   at HTTPManager.OnUpdate () [0x00019] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPManager.cs:419   at HTTPUpdateDelegator.Update () [0x00020] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPUpdateDelegator.cs:171 ","ctxs":[{"TypeName": "HostConnection", "Hash": -1553308416, "Host": "xxxxxx.azurewebsites.net", "VariantId": "https:\/\/xxxxxx.azurewebsites.net:443"},{"TypeName": "HTTPConnection", "Hash": 91150208, "ServerAddress": "https:\/\/xxxxxx.azurewebsites.net:443", "Threaded": true, "RequestHandler": -1722568192}],"t":637783658797062800,"ll":"Information","bh":1}
    47. 2022-01-21 12:44:39,720 INFO  {"tid":1,"div":"TlsProtocol","msg":"Close","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.Close () [0x00015] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:1111   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsStream.Close () [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsStream.cs:45   at Connections.TCPConnector.Close () [0x00028] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:587   at Connections.HTTPConnection.Dispose (System.Boolean disposing) [0x00029] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:164   at Connections.ConnectionBase.Dispose () [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\ConnectionBase.cs:104   at Core.HostConnection.RemoveConnection (Connections.ConnectionBase conn, Connections.HTTPConnectionStates setState) [0x00009] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\HostConnection.cs:156   at Core.HostConnection.CloseConnectionAfterInactivity (System.DateTime now, System.Object context) [0x000ae] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\HostConnection.cs:187   at Extensions.Timer.Process () [0x0003d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Extensions\\Timer.cs:67   at HTTPManager.OnUpdate () [0x00019] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPManager.cs:419   at HTTPUpdateDelegator.Update () [0x00020] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPUpdateDelegator.cs:171 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 840312576}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658797145290,"ll":"Verbose","bh":1}
    48. 2022-01-21 12:44:39,726 INFO  {"tid":1,"div":"TlsProtocol","msg":"HandleAlertMessage user_canceled: True","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.HandleClose (System.Boolean user_canceled) [0x00015] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:159   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.Close () [0x00032] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:1113   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsStream.Close () [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsStream.cs:45   at Connections.TCPConnector.Close () [0x00028] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:587   at Connections.HTTPConnection.Dispose (System.Boolean disposing) [0x00029] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:164   at Connections.ConnectionBase.Dispose () [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\ConnectionBase.cs:104   at Core.HostConnection.RemoveConnection (Connections.ConnectionBase conn, Connections.HTTPConnectionStates setState) [0x00009] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\HostConnection.cs:156   at Core.HostConnection.CloseConnectionAfterInactivity (System.DateTime now, System.Object context) [0x000ae] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\HostConnection.cs:187   at Extensions.Timer.Process () [0x0003d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Extensions\\Timer.cs:67   at HTTPManager.OnUpdate () [0x00019] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPManager.cs:419   at HTTPUpdateDelegator.Update () [0x00020] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPUpdateDelegator.cs:171 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 840312576}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658797199570,"ll":"Verbose","bh":1}
    49. 2022-01-21 12:44:39,731 INFO  {"tid":1,"div":"TlsProtocol","msg":"RaiseAlertWarning alertDescription: 0, message: \"Connection closed\"","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.RaiseAlertWarning (System.Byte alertDescription, System.String message) [0x00015] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:1017   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.HandleClose (System.Boolean user_canceled) [0x0007b] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:170   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.Close () [0x00032] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:1113   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsStream.Close () [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsStream.cs:45   at Connections.TCPConnector.Close () [0x00028] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:587   at Connections.HTTPConnection.Dispose (System.Boolean disposing) [0x00029] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:164   at Connections.ConnectionBase.Dispose () [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\ConnectionBase.cs:104   at Core.HostConnection.RemoveConnection (Connections.ConnectionBase conn, Connections.HTTPConnectionStates setState) [0x00009] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\HostConnection.cs:156   at Core.HostConnection.CloseConnectionAfterInactivity (System.DateTime now, System.Object context) [0x000ae] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\HostConnection.cs:187   at Extensions.Timer.Process () [0x0003d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Extensions\\Timer.cs:67   at HTTPManager.OnUpdate () [0x00019] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPManager.cs:419   at HTTPUpdateDelegator.Update () [0x00020] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPUpdateDelegator.cs:171 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 840312576}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658797252640,"ll":"Verbose","bh":1}
    50. 2022-01-21 12:44:39,759 INFO  {"tid":1,"div":"RequestEventHelper","msg":"Processing request event: [RequestEventInfo SourceRequest: wss:\/\/xxxxxx.azurewebsites.net\/contactsHub?&id=xMO-dNGgMr7aBjWUnUXcgA&access_token=eyJhbGciOiJSUzI1NiIsImtpZCI6IkRENzQ5RDk5QjkyNkQxRUREMDQ0RkU5RkVDNjQwREIzIiwidHlwIjoiYXQrand0In0.eyJuYmYiOjE2NDI3NjU0NDksImV4cCI6MTY0Mjc2OTA0OSwiaXNzIjoiaHR0cHM6Ly90c3NlcnZlcmlkZW50aXR5c2VydmVyLmF6dXJld2Vic2l0ZXMubmV0IiwiYXVkIjpbIlRoYWxlc0V5ZS5Db250YWN0cyIsIlRoYWxlc0V5ZS5TZXR0aW5ncyJdLCJjbGllbnRfaWQiOiJUaGFsZXNFeWUuVW5pdHkiLCJzdWIiOiI0MzMiLCJhdXRoX3RpbWUiOjE2NDI3NjU0NDksImlkcCI6ImxvY2FsIiwiaWQiOiI0MzMiLCJBcGlHYXRld2F5VXJsIjoiaHR0cHM6Ly90c3NlcnZlcmFwaWdhdGV3YXkuYXp1cmV3ZWJzaXRlcy5uZXQiLCJqdGkiOiIyODc0M0REQkVBOTBCMjczODU1RDMwNkNGQ0Y0NUU0NSIsImlhdCI6MTY0Mjc2NTQ0OSwic2NvcGUiOlsib3BlbmlkIiwicHJvZmlsZSIsIlRoYWxlc0V5ZS5Db250YWN0cy5BUEkiLCJUaGFsZXNFeWUuU2V0dGluZ3MuQVBJIiwib2ZmbGluZV9hY2Nlc3MiXSwiYW1yIjpbInBhc3N3b3JkIl19.p-qAeKGK3gtnBPGn1-6qKynBm33WqRsOpgXoSv6QpybuXFZAwVGww41vKSZ5FBXXwAVt9BiUEKFDpfpE1wgEvoJbKtGOy3bF9ZV9wDcrqmiR3Gz1DaBfbGje2XvZpg5HEs_07YO6YRPG4IWoHpQqrNVKqG_spccxK2452NZ2WiwNCVGw9o8AtdDpHAiblFqzO72DRG7Z17F5L72gCtivCOt-C7e0_zkY_v0P04zeKnGw0AKItlDH6-eSAetAJFEhyftEMbtEgOSvdf6ihtCZdNpWvywKPnnu-BVj6ZNARuj1zfKx4srQ8WWOSpePc2FwjFrtT92vpCTlggl5B_KW1Q, Event: StateChange, State: ConnectionTimedOut, Progress: 0, ProgressLength: 0, Data: 0]","stack":"  at Core.RequestEventHelper.ProcessQueue () [0x0001f] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:119   at HTTPManager.OnUpdate () [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPManager.cs:414   at HTTPUpdateDelegator.Update () [0x00020] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPUpdateDelegator.cs:171 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 229744768}, {"TypeName": "WebSocket", "Hash": -1509620992}, {"TypeName": "WebSocketTransport", "Hash": 696519296}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658797513110,"ll":"Information","bh":1}
    51. 2022-01-21 12:44:39,773 INFO  {"tid":1,"div":"WebSocketTransport","msg":"OnError: Connection Timed Out!","stack":"  at SignalRCore.Transports.WebSocketTransport.OnError (WebSocket.WebSocket webSocket, System.String reason) [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\Transports\\WebsocketTransport.cs:164   at WebSocket.WebSocket.OnInternalRequestCallback (HTTPRequest req, HTTPResponse resp) [0x00124] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\WebSocket\\WebSocket.cs:344   at Core.RequestEventHelper.HandleRequestStateChange (Core.RequestEventInfo event) [0x00259] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:345   at Core.RequestEventHelper.ProcessQueue () [0x002f8] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:224   at HTTPManager.OnUpdate () [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPManager.cs:414   at HTTPUpdateDelegator.Update () [0x00020] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPUpdateDelegator.cs:171 ","ctxs":[{"TypeName": "WebSocketTransport", "Hash": 696519296}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658797601030,"ll":"Verbose","bh":1}
    52. 2022-01-21 12:44:39,787 INFO  {"tid":1,"div":"HubConnection","msg":"Transport_OnStateChanged - oldState: Connecting newState: Failed","stack":"  at SignalRCore.HubConnection.Transport_OnStateChanged (SignalRCore.TransportStates oldState, SignalRCore.TransportStates newState) [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\HubConnection.cs:1015   at SignalRCore.Transports.TransportBase.set_State (SignalRCore.TransportStates value) [0x0002d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\Transports\\TransportBase.cs:30   at SignalRCore.Transports.WebSocketTransport.OnError (WebSocket.WebSocket webSocket, System.String reason) [0x00046] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\Transports\\WebsocketTransport.cs:173   at WebSocket.WebSocket.OnInternalRequestCallback (HTTPRequest req, HTTPResponse resp) [0x00124] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\WebSocket\\WebSocket.cs:344   at Core.RequestEventHelper.HandleRequestStateChange (Core.RequestEventInfo event) [0x00259] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:345   at Core.RequestEventHelper.ProcessQueue () [0x002f8] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:224   at HTTPManager.OnUpdate () [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPManager.cs:414   at HTTPUpdateDelegator.Update () [0x00020] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPUpdateDelegator.cs:171 ","ctxs":[{"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658797718130,"ll":"Verbose","bh":1}
    53. 2022-01-21 12:44:39,808 INFO  {"tid":1,"div":"HubConnection","msg":"ConnectImpl - LongPolling","stack":"  at SignalRCore.HubConnection.ConnectImpl (SignalRCore.TransportTypes transport) [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\HubConnection.cs:307   at SignalRCore.HubConnection.Transport_OnStateChanged (SignalRCore.TransportStates oldState, SignalRCore.TransportStates newState) [0x00197] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\HubConnection.cs:1058   at SignalRCore.Transports.TransportBase.set_State (SignalRCore.TransportStates value) [0x0002d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\Transports\\TransportBase.cs:30   at SignalRCore.Transports.WebSocketTransport.OnError (WebSocket.WebSocket webSocket, System.String reason) [0x00046] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\Transports\\WebsocketTransport.cs:173   at WebSocket.WebSocket.OnInternalRequestCallback (HTTPRequest req, HTTPResponse resp) [0x00124] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\WebSocket\\WebSocket.cs:344   at Core.RequestEventHelper.HandleRequestStateChange (Core.RequestEventInfo event) [0x00259] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:345   at Core.RequestEventHelper.ProcessQueue () [0x002f8] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:224   at HTTPManager.OnUpdate () [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPManager.cs:414   at HTTPUpdateDelegator.Update () [0x00020] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPUpdateDelegator.cs:171 ","ctxs":[{"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658797970050,"ll":"Verbose","bh":1}
    54. 2022-01-21 12:44:39,850 INFO  {"tid":1,"div":"LongPollingTransport","msg":"StartConnect","stack":"  at SignalRCore.Transports.LongPollingTransport.StartConnect () [0x00013] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\Transports\\LongPollingTransport.cs:54   at SignalRCore.HubConnection.ConnectImpl (SignalRCore.TransportTypes transport) [0x00161] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\HubConnection.cs:350   at SignalRCore.HubConnection.Transport_OnStateChanged (SignalRCore.TransportStates oldState, SignalRCore.TransportStates newState) [0x00197] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\HubConnection.cs:1058   at SignalRCore.Transports.TransportBase.set_State (SignalRCore.TransportStates value) [0x0002d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\Transports\\TransportBase.cs:30   at SignalRCore.Transports.WebSocketTransport.OnError (WebSocket.WebSocket webSocket, System.String reason) [0x00046] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\Transports\\WebsocketTransport.cs:173   at WebSocket.WebSocket.OnInternalRequestCallback (HTTPRequest req, HTTPResponse resp) [0x00124] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\WebSocket\\WebSocket.cs:344   at Core.RequestEventHelper.HandleRequestStateChange (Core.RequestEventInfo event) [0x00259] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:345   at Core.RequestEventHelper.ProcessQueue () [0x002f8] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:224   at HTTPManager.OnUpdate () [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPManager.cs:414   at HTTPUpdateDelegator.Update () [0x00020] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPUpdateDelegator.cs:171 ","ctxs":[{"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658798280190,"ll":"Information","bh":1}
    55. 2022-01-21 12:44:39,856 INFO  {"tid":1,"div":"HubConnection","msg":"Transport_OnStateChanged - oldState: Initial newState: Connecting","stack":"  at SignalRCore.HubConnection.Transport_OnStateChanged (SignalRCore.TransportStates oldState, SignalRCore.TransportStates newState) [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\HubConnection.cs:1015   at SignalRCore.Transports.TransportBase.set_State (SignalRCore.TransportStates value) [0x0002d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\Transports\\TransportBase.cs:30   at SignalRCore.Transports.LongPollingTransport.StartConnect () [0x00030] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\Transports\\LongPollingTransport.cs:56   at SignalRCore.HubConnection.ConnectImpl (SignalRCore.TransportTypes transport) [0x00161] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\HubConnection.cs:350   at SignalRCore.HubConnection.Transport_OnStateChanged (SignalRCore.TransportStates oldState, SignalRCore.TransportStates newState) [0x00197] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\HubConnection.cs:1058   at SignalRCore.Transports.TransportBase.set_State (SignalRCore.TransportStates value) [0x0002d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\Transports\\TransportBase.cs:30   at SignalRCore.Transports.WebSocketTransport.OnError (WebSocket.WebSocket webSocket, System.String reason) [0x00046] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\Transports\\WebsocketTransport.cs:173   at WebSocket.WebSocket.OnInternalRequestCallback (HTTPRequest req, HTTPResponse resp) [0x00124] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\WebSocket\\WebSocket.cs:344   at Core.RequestEventHelper.HandleRequestStateChange (Core.RequestEventInfo event) [0x00259] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:345   at Core.RequestEventHelper.ProcessQueue () [0x002f8] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:224   at HTTPManager.OnUpdate () [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPManager.cs:414   at HTTPUpdateDelegator.Update () [0x00020] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPUpdateDelegator.cs:171 ","ctxs":[{"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658798473310,"ll":"Verbose","bh":1}
    56. 2022-01-21 12:44:39,867 INFO  {"tid":1,"div":"RequestEventHelper","msg":"Finishing request. Timings: [TimingCollector Start: '12:44:19' \n['Queued': 00:00:00.0438140]\n['DNS Lookup': 00:00:00.0933760]\n['TCP Connection': 00:00:00.0403670]\n['Queued for Dispatch': 00:00:20.3465270]\n['Finished in': 00:00:20.5243560]\n['Callback': 00:00:00.1085840]]","stack":"  at Core.RequestEventHelper.HandleRequestStateChange (Core.RequestEventInfo event) [0x002a7] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:350   at Core.RequestEventHelper.ProcessQueue () [0x002f8] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:224   at HTTPManager.OnUpdate () [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPManager.cs:414   at HTTPUpdateDelegator.Update () [0x00020] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPUpdateDelegator.cs:171 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 229744768}, {"TypeName": "WebSocket", "Hash": -1509620992}, {"TypeName": "WebSocketTransport", "Hash": 696519296}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658798637720,"ll":"Information","bh":1}
    57. 2022-01-21 12:44:39,871 INFO  {"tid":1,"div":"RequestEventHelper","msg":"Processing request event: [RequestEventInfo SourceRequest: https:\/\/xxxxxx.azurewebsites.net\/contactsHub?&id=xMO-dNGgMr7aBjWUnUXcgA, Event: StateChange, State: Queued, Progress: 0, ProgressLength: 0, Data: 0]","stack":"  at Core.RequestEventHelper.ProcessQueue () [0x0001f] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:119   at HTTPManager.OnUpdate () [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPManager.cs:414   at HTTPUpdateDelegator.Update () [0x00020] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPUpdateDelegator.cs:171 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658798662830,"ll":"Information","bh":1}
    58. 2022-01-21 12:44:39,873 INFO  {"tid":1,"div":"RequestEventHelper","msg":"Processing request event: [RequestEventInfo SourceRequest: https:\/\/xxxxxx.azurewebsites.net\/contactsHub?&id=xMO-dNGgMr7aBjWUnUXcgA, Event: Resend, State: Initial, Progress: 0, ProgressLength: 0, Data: 0]","stack":"  at Core.RequestEventHelper.ProcessQueue () [0x0001f] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:119   at HTTPManager.OnUpdate () [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPManager.cs:414   at HTTPUpdateDelegator.Update () [0x00020] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPUpdateDelegator.cs:171 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658798688520,"ll":"Information","bh":1}
    59. 2022-01-21 12:44:39,878 INFO  {"tid":1,"div":"HostConnection","msg":"GetNextAvailable - creating new connection, key: https:\/\/xxxxxx.azurewebsites.net:443 ","stack":"  at Core.HostConnection.GetNextAvailable (HTTPRequest request) [0x00188] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\HostConnection.cs:135   at Core.HostConnection.Send (HTTPRequest request) [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\HostConnection.cs:66   at Core.HostDefinition.Send (HTTPRequest request) [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\HostDefinition.cs:52   at Core.RequestEventHelper.ProcessQueue () [0x0028f] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:202   at HTTPManager.OnUpdate () [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPManager.cs:414   at HTTPUpdateDelegator.Update () [0x00020] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPUpdateDelegator.cs:171 ","ctxs":[{"TypeName": "HostConnection", "Hash": -1553308416, "Host": "xxxxxx.azurewebsites.net", "VariantId": "https:\/\/xxxxxx.azurewebsites.net:443"},{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496},{"TypeName": "HTTPConnection", "Hash": 2068060416, "ServerAddress": "https:\/\/xxxxxx.azurewebsites.net:443", "Threaded": true}],"t":637783658798711850,"ll":"Verbose","bh":1}
    60. 2022-01-21 12:44:39,880 INFO  {"tid":1,"div":"RequestEventHelper","msg":"Processing request event: [RequestEventInfo SourceRequest: https:\/\/xxxxxx.azurewebsites.net\/contactsHub?&id=xMO-dNGgMr7aBjWUnUXcgA, Event: StateChange, State: Initial, Progress: 0, ProgressLength: 0, Data: 0]","stack":"  at Core.RequestEventHelper.ProcessQueue () [0x0001f] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:119   at HTTPManager.OnUpdate () [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPManager.cs:414   at HTTPUpdateDelegator.Update () [0x00020] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPUpdateDelegator.cs:171 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658798747460,"ll":"Information","bh":1}
    61. 2022-01-21 12:44:39,883 INFO  {"tid":1,"div":"RequestEventHelper","msg":"Processing request event: [RequestEventInfo SourceRequest: https:\/\/xxxxxx.azurewebsites.net\/contactsHub?&id=xMO-dNGgMr7aBjWUnUXcgA, Event: StateChange, State: Processing, Progress: 0, ProgressLength: 0, Data: 0]","stack":"  at Core.RequestEventHelper.ProcessQueue () [0x0001f] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:119   at HTTPManager.OnUpdate () [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPManager.cs:414   at HTTPUpdateDelegator.Update () [0x00020] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPUpdateDelegator.cs:171 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658798770980,"ll":"Information","bh":1}
    62. 2022-01-21 12:44:39,913 INFO  {"tid":17,"div":"TCPConnector","msg":"'https:\/\/xxxxxx.azurewebsites.net\/contactsHub?&id=xMO-dNGgMr7aBjWUnUXcgA' - Connecting to xxxxxx.azurewebsites.net:443","stack":"  at Connections.TCPConnector.Connect (HTTPRequest request) [0x0009a] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:402   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658798786480,"ll":"Verbose","bh":1}
    63. 2022-01-21 12:44:39,917 INFO  {"tid":17,"div":"TCPConnector","msg":"'https:\/\/xxxxxx.azurewebsites.net\/contactsHub?&id=xMO-dNGgMr7aBjWUnUXcgA' - Buffer sizes - Send: 66560 Receive: 2097152 Blocking: True","stack":"  at Connections.TCPConnector.Connect (HTTPRequest request) [0x0011e] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:409   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658799115590,"ll":"Verbose","bh":1}
    64. 2022-01-21 12:44:39,991 INFO  {"tid":17,"div":"TcpClient","msg":"Connected to xxxxxx:443","stack":"  at PlatformSupport.TcpClient.General.TcpClient.Connect (System.Net.IPAddress[] ipAddresses, System.Int32 port, HTTPRequest request) [0x000f4] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\TcpClient\\TcpClient.cs:507   at Connections.TCPConnector.Connect (HTTPRequest request) [0x0029b] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:457   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[],"t":637783658799662040,"ll":"Information","bh":1}
    65. 2022-01-21 12:44:40,006 INFO  {"tid":17,"div":"TCPConnector","msg":"Connected to xxxxxx.azurewebsites.net:443","stack":"  at Connections.TCPConnector.Connect (HTTPRequest request) [0x00303] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:469   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658799781270,"ll":"Information","bh":1}
    66. 2022-01-21 12:44:40,018 INFO  {"tid":17,"div":"TlsClientProtocol","msg":"Connect","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00058] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:87   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658800054440,"ll":"Verbose","bh":1}
    67. 2022-01-21 12:44:40,049 INFO  {"tid":17,"div":"TlsClientProtocol","msg":"SendClientHelloMessage","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.SendClientHelloMessage () [0x00017] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:860   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x0014a] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:114   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658800139760,"ll":"Verbose","bh":1}
    68. 2022-01-21 12:44:40,086 INFO  {"tid":17,"div":"TlsProtocol","msg":"BlockForHandshake mConnectionState: 1","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00023] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:267   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658800578360,"ll":"Verbose","bh":1}
    69. 2022-01-21 12:44:40,117 INFO  {"tid":17,"div":"TlsProtocol","msg":"ProcessHandshakeQueue queue.Available: 3970","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0001d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:409   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658801095370,"ll":"Verbose","bh":1}
    70. 2022-01-21 12:44:40,123 INFO  {"tid":17,"div":"TlsClientProtocol","msg":"HandleHandshakeMessage 2","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.HandleHandshakeMessage (System.Byte type, System.IO.MemoryStream buf) [0x00015] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:152   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0011e] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:459   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658801149320,"ll":"Verbose","bh":1}
    71. 2022-01-21 12:44:40,134 INFO  {"tid":17,"div":"TlsClientProtocol","msg":"ReceiveServerHelloMessage server_version: TLS 1.2","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.ReceiveServerHelloMessage (System.IO.MemoryStream buf) [0x000a9] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:635   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.HandleHandshakeMessage (System.Byte type, System.IO.MemoryStream buf) [0x002aa] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:278   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0011e] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:459   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658801203910,"ll":"Verbose","bh":1}
    72. 2022-01-21 12:44:40,139 INFO  {"tid":17,"div":"TlsClientProtocol","msg":"ReceiveServerHelloMessage selectedCipherSuite: C030","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.ReceiveServerHelloMessage (System.IO.MemoryStream buf) [0x001aa] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:664   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.HandleHandshakeMessage (System.Byte type, System.IO.MemoryStream buf) [0x002aa] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:278   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0011e] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:459   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658801271900,"ll":"Verbose","bh":1}
    73. 2022-01-21 12:44:40,145 INFO  {"tid":17,"div":"TlsClientProtocol","msg":"ReceiveServerHelloMessage selectedCompressionMethod: 0","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.ReceiveServerHelloMessage (System.IO.MemoryStream buf) [0x0021f] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:677   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.HandleHandshakeMessage (System.Byte type, System.IO.MemoryStream buf) [0x002aa] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:278   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0011e] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:459   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658801358790,"ll":"Verbose","bh":1}
    74. 2022-01-21 12:44:40,151 INFO  {"tid":17,"div":"TlsClientProtocol","msg":"ReceiveServerHelloMessage mServerExtensions: 23","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.ReceiveServerHelloMessage (System.IO.MemoryStream buf) [0x00349] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:749   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.HandleHandshakeMessage (System.Byte type, System.IO.MemoryStream buf) [0x002aa] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:278   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0011e] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:459   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658801416920,"ll":"Verbose","bh":1}
    75. 2022-01-21 12:44:40,157 INFO  {"tid":17,"div":"TlsProtocol","msg":"InvalidateSession","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.InvalidateSession () [0x00015] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:956   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.HandleHandshakeMessage (System.Byte type, System.IO.MemoryStream buf) [0x0031a] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:292   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0011e] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:459   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658801476570,"ll":"Verbose","bh":1}
    76. 2022-01-21 12:44:40,209 INFO  {"tid":17,"div":"TlsProtocol","msg":"ProcessHandshakeQueue queue.Available: 3885","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0001d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:409   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658801537580,"ll":"Verbose","bh":1}
    77. 2022-01-21 12:44:40,222 INFO  {"tid":17,"div":"TlsClientProtocol","msg":"HandleHandshakeMessage 11","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.HandleHandshakeMessage (System.Byte type, System.IO.MemoryStream buf) [0x00015] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:152   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0011e] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:459   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658801862280,"ll":"Verbose","bh":1}
    78. 2022-01-21 12:44:40,236 INFO  {"tid":17,"div":"TlsClientProtocol","msg":"HandleSupplementalData","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.HandleSupplementalData (System.Collections.IList serverSupplementalData) [0x00015] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:594   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.HandleHandshakeMessage (System.Byte type, System.IO.MemoryStream buf) [0x00136] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:181   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0011e] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:459   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658802187450,"ll":"Verbose","bh":1}
    79. 2022-01-21 12:44:40,314 INFO  {"tid":17,"div":"TlsProtocol","msg":"ProcessHandshakeQueue queue.Available: 337","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0001d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:409   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658802870110,"ll":"Verbose","bh":1}
    80. 2022-01-21 12:44:40,319 INFO  {"tid":17,"div":"TlsClientProtocol","msg":"HandleHandshakeMessage 12","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.HandleHandshakeMessage (System.Byte type, System.IO.MemoryStream buf) [0x00015] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:152   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0011e] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:459   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658802950190,"ll":"Verbose","bh":1}
    81. 2022-01-21 12:44:40,330 INFO  {"tid":17,"div":"TlsProtocol","msg":"ProcessHandshakeQueue queue.Available: 4","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0001d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:409   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658803216260,"ll":"Verbose","bh":1}
    82. 2022-01-21 12:44:40,335 INFO  {"tid":17,"div":"TlsClientProtocol","msg":"HandleHandshakeMessage 14","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.HandleHandshakeMessage (System.Byte type, System.IO.MemoryStream buf) [0x00015] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:152   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0011e] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:459   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658803272550,"ll":"Verbose","bh":1}
    83. 2022-01-21 12:44:40,342 INFO  {"tid":17,"div":"TlsClientProtocol","msg":"SendClientKeyExchangeMessage","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.SendClientKeyExchangeMessage () [0x00015] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:958   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.HandleHandshakeMessage (System.Byte type, System.IO.MemoryStream buf) [0x004f1] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:401   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0011e] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:459   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658803342850,"ll":"Verbose","bh":1}
    84. 2022-01-21 12:44:40,399 INFO  {"tid":17,"div":"DefaultTlsCipherFactory","msg":"CreateCipher: AES_256_GCM","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.DefaultTlsCipherFactory.CreateCipher (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsContext context, System.Int32 encryptionAlgorithm, System.Int32 macAlgorithm) [0x0031a] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\DefaultTlsCipherFactory.cs:73   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.AbstractTlsClient.GetCipher () [0x00019] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\AbstractTlsClient.cs:307   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.HandleHandshakeMessage (System.Byte type, System.IO.MemoryStream buf) [0x00573] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:417   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0011e] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:459   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658803896970,"ll":"Verbose","bh":1}
    85. 2022-01-21 12:44:40,407 INFO  {"tid":17,"div":"TlsProtocol","msg":"SendChangeCipherSpecMessage","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SendChangeCipherSpecMessage () [0x00015] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:1061   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.HandleHandshakeMessage (System.Byte type, System.IO.MemoryStream buf) [0x0061b] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:446   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0011e] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:459   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658803990630,"ll":"Verbose","bh":1}
    86. 2022-01-21 12:44:40,412 INFO  {"tid":17,"div":"TlsProtocol","msg":"SendFinishedMessage","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SendFinishedMessage () [0x00015] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:1071   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.HandleHandshakeMessage (System.Byte type, System.IO.MemoryStream buf) [0x00622] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:447   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0011e] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:459   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658804044230,"ll":"Verbose","bh":1}
    87. 2022-01-21 12:44:40,415 INFO  {"tid":17,"div":"TlsProtocol","msg":"BlockForHandshake mConnectionState: 13","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00023] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:267   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658804102500,"ll":"Verbose","bh":1}
    88. 2022-01-21 12:44:40,543 INFO  {"tid":17,"div":"TlsProtocol","msg":"ProcessChangeCipherSpec buf Len: 1","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessChangeCipherSpec (System.Byte[] buf, System.Int32 off, System.Int32 len) [0x00015] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:498   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x00075] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:366   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658805295740,"ll":"Verbose","bh":1}
    89. 2022-01-21 12:44:40,609 INFO  {"tid":17,"div":"TlsProtocol","msg":"BlockForHandshake mConnectionState: 13","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00023] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:267   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658805366860,"ll":"Verbose","bh":1}
    90. 2022-01-21 12:44:40,630 INFO  {"tid":17,"div":"TlsProtocol","msg":"ProcessHandshakeQueue queue.Available: 16","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0001d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:409   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658805421310,"ll":"Verbose","bh":1}
    91. 2022-01-21 12:44:40,638 INFO  {"tid":17,"div":"TlsClientProtocol","msg":"HandleHandshakeMessage 20","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.HandleHandshakeMessage (System.Byte type, System.IO.MemoryStream buf) [0x00015] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:152   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0011e] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:459   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658806285030,"ll":"Verbose","bh":1}
    92. 2022-01-21 12:44:40,658 INFO  {"tid":17,"div":"TlsProtocol","msg":"ProcessFinishedMessage","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessFinishedMessage (System.IO.MemoryStream buf) [0x00015] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:974   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.HandleHandshakeMessage (System.Byte type, System.IO.MemoryStream buf) [0x0026c] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:261   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0011e] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:459   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658806350280,"ll":"Verbose","bh":1}
    93. 2022-01-21 12:44:40,682 INFO  {"tid":17,"div":"TlsProtocol","msg":"CompleteHandshake mAppDataSplitEnabled: False","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.CompleteHandshake () [0x00058] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:294   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.HandleHandshakeMessage (System.Byte type, System.IO.MemoryStream buf) [0x0027c] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:264   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0011e] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:459   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658806424820,"ll":"Verbose","bh":1}
    94. 2022-01-21 12:44:40,689 INFO  {"tid":17,"div":"TlsClientProtocol","msg":"CleanupHandshake","stack":"  at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.CleanupHandshake () [0x00015] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:123   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.CompleteHandshake () [0x001a3] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:335   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.HandleHandshakeMessage (System.Byte type, System.IO.MemoryStream buf) [0x0027c] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:264   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessHandshakeQueue (SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue queue) [0x0011e] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:459   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.ProcessRecord (System.Byte protocol, System.Byte[] buf, System.Int32 off, System.Int32 len) [0x000c5] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:379   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream.ReadRecord () [0x00102] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\RecordStream.cs:204   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.SafeReadRecord () [0x00002] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:593   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol.BlockForHandshake () [0x00065] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsProtocol.cs:275   at SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol.Connect (SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient tlsClient) [0x00158] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SecureProtocol\\crypto\\tls\\TlsClientProtocol.cs:117   at Connections.TCPConnector.Connect (HTTPRequest request) [0x00580] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\TCPConnector.cs:548   at Connections.HTTPConnection.ThreadFunc () [0x0009d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:80   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658806787250,"ll":"Verbose","bh":1}
    95. 2022-01-21 12:44:40,693 INFO  {"tid":17,"div":"HTTPConnection","msg":"Negotiated protocol through ALPN: 'http\/1.1'","stack":"  at Connections.HTTPConnection.ThreadFunc () [0x00170] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:107   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPConnection", "Hash": 2068060416, "ServerAddress": "https:\/\/xxxxxx.azurewebsites.net:443", "Threaded": true},{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658806850700,"ll":"Information","bh":1}
    96. 2022-01-21 12:44:40,696 INFO  {"tid":17,"div":"HTTP1Handler","msg":"[BestHTTP.Connections.HTTP1Handler] started processing request 'https:\/\/xxxxxx.azurewebsites.net\/contactsHub?&id=xMO-dNGgMr7aBjWUnUXcgA'","stack":"  at Connections.HTTP1Handler.RunHandler () [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:38   at Connections.HTTPConnection.ThreadFunc () [0x002b0] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:136   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTP1Handler", "Hash": 1183231488, "Connection": 2068060416},{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658806879340,"ll":"Information","bh":1}
    97. 2022-01-21 12:44:40,698 INFO  {"tid":1,"div":"ConnectionEventHelper","msg":"Processing connection event: [ConnectionEventInfo SourceConnection: [2068060416:https:\/\/xxxxxx.azurewebsites.net:443], Event: ProtocolSupport, State: Initial, ProtocolSupport: HTTP1]","stack":"  at Core.ConnectionEventHelper.ProcessQueue () [0x00018] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\ConnectionEvents.cs:113   at HTTPManager.OnUpdate () [0x00007] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPManager.cs:415   at HTTPUpdateDelegator.Update () [0x00020] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPUpdateDelegator.cs:171 ","ctxs":[{"TypeName": "HTTPConnection", "Hash": 2068060416, "ServerAddress": "https:\/\/xxxxxx.azurewebsites.net:443", "Threaded": true, "RequestHandler": 1183231488}],"t":637783658806950080,"ll":"Information","bh":1}
    98. 2022-01-21 12:44:40,700 INFO  {"tid":17,"div":"HTTPRequest","msg":"Sending request: 'POST \/contactsHub?&id=xMO-dNGgMr7aBjWUnUXcgA HTTP\/1.1'","stack":"  at HTTPRequest.SendOutTo (System.IO.Stream stream) [0x00054] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1287   at Connections.HTTP1Handler.RunHandler () [0x000cc] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:60   at Connections.HTTPConnection.ThreadFunc () [0x002b0] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:136   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658806952690,"ll":"Information","bh":1}
    99. 2022-01-21 12:44:40,710 INFO  {"tid":17,"div":"HTTPRequest","msg":"Header - 'Authorization': 'Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6IkRENzQ5RDk5QjkyNkQxRUREMDQ0RkU5RkVDNjQwREIzIiwidHlwIjoiYXQrand0In0.eyJuYmYiOjE2NDI3NjU0NDksImV4cCI6MTY0Mjc2OTA0OSwiaXNzIjoiaHR0cHM6Ly90c3NlcnZlcmlkZW50aXR5c2VydmVyLmF6dXJld2Vic2l0ZXMubmV0IiwiYXVkIjpbIlRoYWxlc0V5ZS5Db250YWN0cyIsIlRoYWxlc0V5ZS5TZXR0aW5ncyJdLCJjbGllbnRfaWQiOiJUaGFsZXNFeWUuVW5pdHkiLCJzdWIiOiI0MzMiLCJhdXRoX3RpbWUiOjE2NDI3NjU0NDksImlkcCI6ImxvY2FsIiwiaWQiOiI0MzMiLCJBcGlHYXRld2F5VXJsIjoiaHR0cHM6Ly90c3NlcnZlcmFwaWdhdGV3YXkuYXp1cmV3ZWJzaXRlcy5uZXQiLCJqdGkiOiIyODc0M0REQkVBOTBCMjczODU1RDMwNkNGQ0Y0NUU0NSIsImlhdCI6MTY0Mjc2NTQ0OSwic2NvcGUiOlsib3BlbmlkIiwicHJvZmlsZSIsIlRoYWxlc0V5ZS5Db250YWN0cy5BUEkiLCJUaGFsZXNFeWUuU2V0dGluZ3MuQVBJIiwib2ZmbGluZV9hY2Nlc3MiXSwiYW1yIjpbInBhc3N3b3JkIl19.p-qAeKGK3gtnBPGn1-6qKynBm33WqRsOpgXoSv6QpybuXFZAwVGww41vKSZ5FBXXwAVt9BiUEKFDpfpE1wgEvoJbKtGOy3bF9ZV9wDcrqmiR3Gz1DaBfbGje2XvZpg5HEs_07YO6YRPG4IWoHpQqrNVKqG_spccxK2452NZ2WiwNCVGw9o8AtdDpHAiblFqzO72DRG7Z17F5L72gCtivCOt-C7e0_zkY_v0P04zeKnGw0AKItlDH6-eSAetAJFEhyftEMbtEgOSvdf6ihtCZdNpWvywKPnnu-BVj6ZNARuj1zfKx4srQ8WWOSpePc2FwjFrtT92vpCTlggl5B_KW1Q'","stack":"  at HTTPRequest.VerboseLogging (System.String str) [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1513   at HTTPRequest+<>c__DisplayClass243_0.<SendHeaders>b__0 (System.String header, System.Collections.Generic.List`1[T] values) [0x00088] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1178   at HTTPRequest.EnumerateHeaders (OnHeaderEnumerationDelegate callback, System.Boolean callBeforeSendCallback) [0x006d4] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1154   at HTTPRequest.SendHeaders (System.IO.Stream stream) [0x00015] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1162   at HTTPRequest.SendOutTo (System.IO.Stream stream) [0x000b1] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1301   at Connections.HTTP1Handler.RunHandler () [0x000cc] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:60   at Connections.HTTPConnection.ThreadFunc () [0x002b0] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:136   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658807014970,"ll":"Verbose","bh":1}
    100. 2022-01-21 12:44:40,714 INFO  {"tid":17,"div":"HTTPRequest","msg":"Header - 'Host': 'xxxxxx.azurewebsites.net'","stack":"  at HTTPRequest.VerboseLogging (System.String str) [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1513   at HTTPRequest+<>c__DisplayClass243_0.<SendHeaders>b__0 (System.String header, System.Collections.Generic.List`1[T] values) [0x00088] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1178   at HTTPRequest.EnumerateHeaders (OnHeaderEnumerationDelegate callback, System.Boolean callBeforeSendCallback) [0x006d4] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1154   at HTTPRequest.SendHeaders (System.IO.Stream stream) [0x00015] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1162   at HTTPRequest.SendOutTo (System.IO.Stream stream) [0x000b1] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1301   at Connections.HTTP1Handler.RunHandler () [0x000cc] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:60   at Connections.HTTPConnection.ThreadFunc () [0x002b0] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:136   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658807073330,"ll":"Verbose","bh":1}
    101. 2022-01-21 12:44:40,719 INFO  {"tid":17,"div":"HTTPRequest","msg":"Header - 'Accept-Encoding': 'gzip, identity'","stack":"  at HTTPRequest.VerboseLogging (System.String str) [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1513   at HTTPRequest+<>c__DisplayClass243_0.<SendHeaders>b__0 (System.String header, System.Collections.Generic.List`1[T] values) [0x00088] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1178   at HTTPRequest.EnumerateHeaders (OnHeaderEnumerationDelegate callback, System.Boolean callBeforeSendCallback) [0x006d4] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1154   at HTTPRequest.SendHeaders (System.IO.Stream stream) [0x00015] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1162   at HTTPRequest.SendOutTo (System.IO.Stream stream) [0x000b1] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1301   at Connections.HTTP1Handler.RunHandler () [0x000cc] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:60   at Connections.HTTPConnection.ThreadFunc () [0x002b0] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:136   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658807125860,"ll":"Verbose","bh":1}
    102. 2022-01-21 12:44:40,725 INFO  {"tid":17,"div":"HTTPRequest","msg":"Header - 'Connection': 'Keep-Alive, TE'","stack":"  at HTTPRequest.VerboseLogging (System.String str) [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1513   at HTTPRequest+<>c__DisplayClass243_0.<SendHeaders>b__0 (System.String header, System.Collections.Generic.List`1[T] values) [0x00088] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1178   at HTTPRequest.EnumerateHeaders (OnHeaderEnumerationDelegate callback, System.Boolean callBeforeSendCallback) [0x006d4] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1154   at HTTPRequest.SendHeaders (System.IO.Stream stream) [0x00015] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1162   at HTTPRequest.SendOutTo (System.IO.Stream stream) [0x000b1] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1301   at Connections.HTTP1Handler.RunHandler () [0x000cc] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:60   at Connections.HTTPConnection.ThreadFunc () [0x002b0] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:136   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658807175710,"ll":"Verbose","bh":1}
    103. 2022-01-21 12:44:40,750 INFO  {"tid":17,"div":"HTTPRequest","msg":"Header - 'Keep-Alive': 'timeout=21'","stack":"  at HTTPRequest.VerboseLogging (System.String str) [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1513   at HTTPRequest+<>c__DisplayClass243_0.<SendHeaders>b__0 (System.String header, System.Collections.Generic.List`1[T] values) [0x00088] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1178   at HTTPRequest.EnumerateHeaders (OnHeaderEnumerationDelegate callback, System.Boolean callBeforeSendCallback) [0x006d4] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1154   at HTTPRequest.SendHeaders (System.IO.Stream stream) [0x00015] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1162   at HTTPRequest.SendOutTo (System.IO.Stream stream) [0x000b1] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1301   at Connections.HTTP1Handler.RunHandler () [0x000cc] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:60   at Connections.HTTPConnection.ThreadFunc () [0x002b0] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:136   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658807226630,"ll":"Verbose","bh":1}
    104. 2022-01-21 12:44:40,754 INFO  {"tid":17,"div":"HTTPRequest","msg":"Header - 'TE': 'identity'","stack":"  at HTTPRequest.VerboseLogging (System.String str) [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1513   at HTTPRequest+<>c__DisplayClass243_0.<SendHeaders>b__0 (System.String header, System.Collections.Generic.List`1[T] values) [0x00088] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1178   at HTTPRequest.EnumerateHeaders (OnHeaderEnumerationDelegate callback, System.Boolean callBeforeSendCallback) [0x006d4] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1154   at HTTPRequest.SendHeaders (System.IO.Stream stream) [0x00015] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1162   at HTTPRequest.SendOutTo (System.IO.Stream stream) [0x000b1] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1301   at Connections.HTTP1Handler.RunHandler () [0x000cc] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:60   at Connections.HTTPConnection.ThreadFunc () [0x002b0] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:136   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658807482970,"ll":"Verbose","bh":1}
    105. 2022-01-21 12:44:40,759 INFO  {"tid":17,"div":"HTTPRequest","msg":"Header - 'User-Agent': 'BestHTTP\/2 v2.4.0'","stack":"  at HTTPRequest.VerboseLogging (System.String str) [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1513   at HTTPRequest+<>c__DisplayClass243_0.<SendHeaders>b__0 (System.String header, System.Collections.Generic.List`1[T] values) [0x00088] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1178   at HTTPRequest.EnumerateHeaders (OnHeaderEnumerationDelegate callback, System.Boolean callBeforeSendCallback) [0x006d4] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1154   at HTTPRequest.SendHeaders (System.IO.Stream stream) [0x00015] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1162   at HTTPRequest.SendOutTo (System.IO.Stream stream) [0x000b1] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1301   at Connections.HTTP1Handler.RunHandler () [0x000cc] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:60   at Connections.HTTPConnection.ThreadFunc () [0x002b0] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:136   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658807525460,"ll":"Verbose","bh":1}
    106. 2022-01-21 12:44:40,764 INFO  {"tid":17,"div":"HTTPRequest","msg":"Header - 'Content-Type': 'application\/octet-stream'","stack":"  at HTTPRequest.VerboseLogging (System.String str) [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1513   at HTTPRequest+<>c__DisplayClass243_0.<SendHeaders>b__0 (System.String header, System.Collections.Generic.List`1[T] values) [0x00088] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1178   at HTTPRequest.EnumerateHeaders (OnHeaderEnumerationDelegate callback, System.Boolean callBeforeSendCallback) [0x006d4] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1154   at HTTPRequest.SendHeaders (System.IO.Stream stream) [0x00015] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1162   at HTTPRequest.SendOutTo (System.IO.Stream stream) [0x000b1] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1301   at Connections.HTTP1Handler.RunHandler () [0x000cc] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:60   at Connections.HTTPConnection.ThreadFunc () [0x002b0] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:136   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658807577480,"ll":"Verbose","bh":1}
    107. 2022-01-21 12:44:40,770 INFO  {"tid":17,"div":"HTTPRequest","msg":"Header - 'Content-Length': '34'","stack":"  at HTTPRequest.VerboseLogging (System.String str) [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1513   at HTTPRequest+<>c__DisplayClass243_0.<SendHeaders>b__0 (System.String header, System.Collections.Generic.List`1[T] values) [0x00088] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1178   at HTTPRequest.EnumerateHeaders (OnHeaderEnumerationDelegate callback, System.Boolean callBeforeSendCallback) [0x006d4] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1154   at HTTPRequest.SendHeaders (System.IO.Stream stream) [0x00015] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1162   at HTTPRequest.SendOutTo (System.IO.Stream stream) [0x000b1] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1301   at Connections.HTTP1Handler.RunHandler () [0x000cc] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:60   at Connections.HTTPConnection.ThreadFunc () [0x002b0] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:136   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658807627630,"ll":"Verbose","bh":1}
    108. 2022-01-21 12:44:40,787 INFO  {"tid":17,"div":"HTTPRequest","msg":"Header - 'Cookie': 'ARRAffinity=c64b94e3eed4edc78cdbd8584e2772ef29e3cd5a7e1ebff8b236e5b8ce42777e; ARRAffinitySameSite=c64b94e3eed4edc78cdbd8584e2772ef29e3cd5a7e1ebff8b236e5b8ce42777e'","stack":"  at HTTPRequest.VerboseLogging (System.String str) [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1513   at HTTPRequest+<>c__DisplayClass243_0.<SendHeaders>b__0 (System.String header, System.Collections.Generic.List`1[T] values) [0x00088] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1178   at HTTPRequest.EnumerateHeaders (OnHeaderEnumerationDelegate callback, System.Boolean callBeforeSendCallback) [0x006d4] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1154   at HTTPRequest.SendHeaders (System.IO.Stream stream) [0x00015] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1162   at HTTPRequest.SendOutTo (System.IO.Stream stream) [0x000b1] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1301   at Connections.HTTP1Handler.RunHandler () [0x000cc] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:60   at Connections.HTTPConnection.ThreadFunc () [0x002b0] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:136   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658807683350,"ll":"Verbose","bh":1}
    109. 2022-01-21 12:44:40,845 INFO  {"tid":17,"div":"HTTPRequest","msg":"'POST \/contactsHub?&id=xMO-dNGgMr7aBjWUnUXcgA HTTP\/1.1' sent out","stack":"  at HTTPRequest.SendOutTo (System.IO.Stream stream) [0x002c7] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPRequest.cs:1398   at Connections.HTTP1Handler.RunHandler () [0x000cc] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:60   at Connections.HTTPConnection.ThreadFunc () [0x002b0] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:136   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658807932050,"ll":"Information","bh":1}
    110. 2022-01-21 12:44:40,876 INFO  {"tid":17,"div":"HTTPConnection","msg":"[BestHTTP.Connections.HTTP1Handler] - Receive - protocol: HTTP","stack":"  at Connections.HTTP1Handler.Receive (HTTPRequest request) [0x0002e] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:225   at Connections.HTTP1Handler.RunHandler () [0x0014f] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:69   at Connections.HTTPConnection.ThreadFunc () [0x002b0] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:136   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTP1Handler", "Hash": 1183231488, "Connection": 2068060416},{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658808383060,"ll":"Verbose","bh":1}
    111. 2022-01-21 12:44:40,905 INFO  {"tid":17,"div":"HTTPResponse","msg":"Receive. forceReadRawContentLength: '-1', readPayloadData: 'True'","stack":"  at HTTPResponse.VerboseLogging (System.String str) [0x00012] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPResponse.cs:1193   at HTTPResponse.Receive (System.Int32 forceReadRawContentLength, System.Boolean readPayloadData, System.Boolean sendUpgradedEvent) [0x00033] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPResponse.cs:237   at Connections.HTTP1Handler.Receive (HTTPRequest request) [0x0008d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:229   at Connections.HTTP1Handler.RunHandler () [0x0014f] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:69   at Connections.HTTPConnection.ThreadFunc () [0x002b0] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:136   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPResponse", "Hash": -2032245888, "BaseRequest": 535028672, "IsStreamed": false, "IsFromCache": false},{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658808738610,"ll":"Verbose","bh":1}
    112. 2022-01-21 12:44:40,909 INFO  {"tid":17,"div":"HTTPResponse","msg":"Status Line: 'HTTP\/1.1'","stack":"  at HTTPResponse.VerboseLogging (System.String str) [0x00012] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPResponse.cs:1193   at HTTPResponse.Receive (System.Int32 forceReadRawContentLength, System.Boolean readPayloadData, System.Boolean sendUpgradedEvent) [0x000f2] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPResponse.cs:259   at Connections.HTTP1Handler.Receive (HTTPRequest request) [0x0008d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:229   at Connections.HTTP1Handler.RunHandler () [0x0014f] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:69   at Connections.HTTPConnection.ThreadFunc () [0x002b0] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:136   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPResponse", "Hash": -2032245888, "BaseRequest": 535028672, "IsStreamed": false, "IsFromCache": false},{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658809031690,"ll":"Verbose","bh":1}
    113. 2022-01-21 12:44:40,914 INFO  {"tid":17,"div":"HTTPResponse","msg":"HTTP Version: '1.1'","stack":"  at HTTPResponse.VerboseLogging (System.String str) [0x00012] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPResponse.cs:1193   at HTTPResponse.Receive (System.Int32 forceReadRawContentLength, System.Boolean readPayloadData, System.Boolean sendUpgradedEvent) [0x001b2] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPResponse.cs:277   at Connections.HTTP1Handler.Receive (HTTPRequest request) [0x0008d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:229   at Connections.HTTP1Handler.RunHandler () [0x0014f] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:69   at Connections.HTTPConnection.ThreadFunc () [0x002b0] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:136   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPResponse", "Hash": -2032245888, "BaseRequest": 535028672, "IsStreamed": false, "IsFromCache": false},{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658809075520,"ll":"Verbose","bh":1}
    114. 2022-01-21 12:44:40,930 INFO  {"tid":17,"div":"HTTPResponse","msg":"Status Code: '404'","stack":"  at HTTPResponse.VerboseLogging (System.String str) [0x00012] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPResponse.cs:1193   at HTTPResponse.Receive (System.Int32 forceReadRawContentLength, System.Boolean readPayloadData, System.Boolean sendUpgradedEvent) [0x00204] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPResponse.cs:283   at Connections.HTTP1Handler.Receive (HTTPRequest request) [0x0008d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:229   at Connections.HTTP1Handler.RunHandler () [0x0014f] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:69   at Connections.HTTPConnection.ThreadFunc () [0x002b0] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:136   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPResponse", "Hash": -2032245888, "BaseRequest": 535028672, "IsStreamed": false, "IsFromCache": false},{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658809117130,"ll":"Verbose","bh":1}
    115. 2022-01-21 12:44:40,934 INFO  {"tid":17,"div":"HTTPResponse","msg":"Status Message: 'Not Found'","stack":"  at HTTPResponse.VerboseLogging (System.String str) [0x00012] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPResponse.cs:1193   at HTTPResponse.Receive (System.Int32 forceReadRawContentLength, System.Boolean readPayloadData, System.Boolean sendUpgradedEvent) [0x002c4] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPResponse.cs:296   at Connections.HTTP1Handler.Receive (HTTPRequest request) [0x0008d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:229   at Connections.HTTP1Handler.RunHandler () [0x0014f] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:69   at Connections.HTTPConnection.ThreadFunc () [0x002b0] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:136   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPResponse", "Hash": -2032245888, "BaseRequest": 535028672, "IsStreamed": false, "IsFromCache": false},{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658809160220,"ll":"Verbose","bh":1}
    116. 2022-01-21 12:44:40,937 INFO  {"tid":17,"div":"HTTPResponse","msg":"Header - 'Content-Length': '26'","stack":"  at HTTPResponse.VerboseLogging (System.String str) [0x00012] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPResponse.cs:1193   at HTTPResponse.ReadHeaders (System.IO.Stream stream) [0x00029] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPResponse.cs:387   at HTTPResponse.Receive (System.Int32 forceReadRawContentLength, System.Boolean readPayloadData, System.Boolean sendUpgradedEvent) [0x00313] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPResponse.cs:306   at Connections.HTTP1Handler.Receive (HTTPRequest request) [0x0008d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:229   at Connections.HTTP1Handler.RunHandler () [0x0014f] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:69   at Connections.HTTPConnection.ThreadFunc () [0x002b0] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:136   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPResponse", "Hash": -2032245888, "BaseRequest": 535028672, "IsStreamed": false, "IsFromCache": false},{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658809261840,"ll":"Verbose","bh":1}
    117. 2022-01-21 12:44:40,960 INFO  {"tid":17,"div":"HTTPResponse","msg":"Header - 'Content-Type': 'text\/plain'","stack":"  at HTTPResponse.VerboseLogging (System.String str) [0x00012] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPResponse.cs:1193   at HTTPResponse.ReadHeaders (System.IO.Stream stream) [0x00029] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPResponse.cs:387   at HTTPResponse.Receive (System.Int32 forceReadRawContentLength, System.Boolean readPayloadData, System.Boolean sendUpgradedEvent) [0x00313] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPResponse.cs:306   at Connections.HTTP1Handler.Receive (HTTPRequest request) [0x0008d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:229   at Connections.HTTP1Handler.RunHandler () [0x0014f] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:69   at Connections.HTTPConnection.ThreadFunc () [0x002b0] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:136   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPResponse", "Hash": -2032245888, "BaseRequest": 535028672, "IsStreamed": false, "IsFromCache": false},{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658809346050,"ll":"Verbose","bh":1}
    118. 2022-01-21 12:44:40,975 INFO  {"tid":17,"div":"HTTPResponse","msg":"Header - 'Server': 'Microsoft-IIS\/10.0'","stack":"  at HTTPResponse.VerboseLogging (System.String str) [0x00012] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPResponse.cs:1193   at HTTPResponse.ReadHeaders (System.IO.Stream stream) [0x00029] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPResponse.cs:387   at HTTPResponse.Receive (System.Int32 forceReadRawContentLength, System.Boolean readPayloadData, System.Boolean sendUpgradedEvent) [0x00313] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPResponse.cs:306   at Connections.HTTP1Handler.Receive (HTTPRequest request) [0x0008d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:229   at Connections.HTTP1Handler.RunHandler () [0x0014f] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:69   at Connections.HTTPConnection.ThreadFunc () [0x002b0] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:136   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPResponse", "Hash": -2032245888, "BaseRequest": 535028672, "IsStreamed": false, "IsFromCache": false},{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658809399850,"ll":"Verbose","bh":1}
    119. 2022-01-21 12:44:40,998 INFO  {"tid":17,"div":"HTTPResponse","msg":"Header - 'X-Powered-By': 'ASP.NET'","stack":"  at HTTPResponse.VerboseLogging (System.String str) [0x00012] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPResponse.cs:1193   at HTTPResponse.ReadHeaders (System.IO.Stream stream) [0x00029] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPResponse.cs:387   at HTTPResponse.Receive (System.Int32 forceReadRawContentLength, System.Boolean readPayloadData, System.Boolean sendUpgradedEvent) [0x00313] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPResponse.cs:306   at Connections.HTTP1Handler.Receive (HTTPRequest request) [0x0008d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:229   at Connections.HTTP1Handler.RunHandler () [0x0014f] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:69   at Connections.HTTPConnection.ThreadFunc () [0x002b0] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:136   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPResponse", "Hash": -2032245888, "BaseRequest": 535028672, "IsStreamed": false, "IsFromCache": false},{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658809680790,"ll":"Verbose","bh":1}
    120. 2022-01-21 12:44:41,004 INFO  {"tid":17,"div":"HTTPResponse","msg":"Header - 'Date': 'Fri, 21 Jan 2022 11:44:40 GMT'","stack":"  at HTTPResponse.VerboseLogging (System.String str) [0x00012] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPResponse.cs:1193   at HTTPResponse.ReadHeaders (System.IO.Stream stream) [0x00029] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPResponse.cs:387   at HTTPResponse.Receive (System.Int32 forceReadRawContentLength, System.Boolean readPayloadData, System.Boolean sendUpgradedEvent) [0x00313] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPResponse.cs:306   at Connections.HTTP1Handler.Receive (HTTPRequest request) [0x0008d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:229   at Connections.HTTP1Handler.RunHandler () [0x0014f] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:69   at Connections.HTTPConnection.ThreadFunc () [0x002b0] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:136   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPResponse", "Hash": -2032245888, "BaseRequest": 535028672, "IsStreamed": false, "IsFromCache": false},{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658809966760,"ll":"Verbose","bh":1}
    121. 2022-01-21 12:44:41,009 INFO  {"tid":17,"div":"HTTPResponse","msg":"ReadRaw - contentLength: 26","stack":"  at HTTPResponse.VerboseLogging (System.String str) [0x00012] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPResponse.cs:1193   at HTTPResponse.ReadRaw (System.IO.Stream stream, System.Int64 contentLength) [0x0005d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPResponse.cs:784   at HTTPResponse.ReadPayload (System.Int32 forceReadRawContentLength) [0x000e2] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPResponse.cs:356   at HTTPResponse.Receive (System.Int32 forceReadRawContentLength, System.Boolean readPayloadData, System.Boolean sendUpgradedEvent) [0x003c7] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPResponse.cs:324   at Connections.HTTP1Handler.Receive (HTTPRequest request) [0x0008d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:229   at Connections.HTTP1Handler.RunHandler () [0x0014f] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:69   at Connections.HTTPConnection.ThreadFunc () [0x002b0] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:136   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPResponse", "Hash": -2032245888, "BaseRequest": 535028672, "IsStreamed": false, "IsFromCache": false},{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658810018100,"ll":"Verbose","bh":1}
    122. 2022-01-21 12:44:41,014 INFO  {"tid":17,"div":"HTTPResponse","msg":"ReadPayload Finished!","stack":"  at HTTPResponse.VerboseLogging (System.String str) [0x00012] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPResponse.cs:1193   at HTTPResponse.ReadPayload (System.Int32 forceReadRawContentLength) [0x0017e] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPResponse.cs:372   at HTTPResponse.Receive (System.Int32 forceReadRawContentLength, System.Boolean readPayloadData, System.Boolean sendUpgradedEvent) [0x003c7] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPResponse.cs:324   at Connections.HTTP1Handler.Receive (HTTPRequest request) [0x0008d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:229   at Connections.HTTP1Handler.RunHandler () [0x0014f] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:69   at Connections.HTTPConnection.ThreadFunc () [0x002b0] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:136   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTPResponse", "Hash": -2032245888, "BaseRequest": 535028672, "IsStreamed": false, "IsFromCache": false},{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658810073730,"ll":"Verbose","bh":1}
    123. 2022-01-21 12:44:41,018 INFO  {"tid":17,"div":"HTTP1Handler","msg":"[BestHTTP.Connections.HTTP1Handler] - Receive - Finished Successfully!","stack":"  at Connections.HTTP1Handler.Receive (HTTPRequest request) [0x00101] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:238   at Connections.HTTP1Handler.RunHandler () [0x0014f] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTP1Handler.cs:69   at Connections.HTTPConnection.ThreadFunc () [0x002b0] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Connections\\HTTPConnection.cs:136   at PlatformSupport.Threading.ThreadedRunner+<>c__DisplayClass5_0.<RunLongLiving>b__0 (System.Object param) [0x00000] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\PlatformSupport\\Threading\\ThreadedRunner.cs:98   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0   at System.Threading.ThreadHelper.ThreadStart (System.Object obj) [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0 ","ctxs":[{"TypeName": "HTTP1Handler", "Hash": 1183231488, "Connection": 2068060416},{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658810123890,"ll":"Verbose","bh":1}
    124. 2022-01-21 12:44:41,025 INFO  {"tid":1,"div":"RequestEventHelper","msg":"Processing request event: [RequestEventInfo SourceRequest: https:\/\/xxxxxx.azurewebsites.net\/contactsHub?&id=xMO-dNGgMr7aBjWUnUXcgA, Event: StateChange, State: Finished, Progress: 0, ProgressLength: 0, Data: 0]","stack":"  at Core.RequestEventHelper.ProcessQueue () [0x0001f] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:119   at HTTPManager.OnUpdate () [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPManager.cs:414   at HTTPUpdateDelegator.Update () [0x00020] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPUpdateDelegator.cs:171 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658810219420,"ll":"Information","bh":1}
    125. 2022-01-21 12:44:41,031 INFO  {"tid":1,"div":"HubConnection","msg":"Transport_OnStateChanged - oldState: Connecting newState: Failed","stack":"  at SignalRCore.HubConnection.Transport_OnStateChanged (SignalRCore.TransportStates oldState, SignalRCore.TransportStates newState) [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\HubConnection.cs:1015   at SignalRCore.Transports.TransportBase.set_State (SignalRCore.TransportStates value) [0x0002d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\Transports\\TransportBase.cs:30   at SignalRCore.Transports.LongPollingTransport.OnHandshakeRequestFinished (HTTPRequest req, HTTPResponse resp) [0x000ea] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\Transports\\LongPollingTransport.cs:211   at Core.RequestEventHelper.HandleRequestStateChange (Core.RequestEventInfo event) [0x00259] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:345   at Core.RequestEventHelper.ProcessQueue () [0x002f8] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:224   at HTTPManager.OnUpdate () [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPManager.cs:414   at HTTPUpdateDelegator.Update () [0x00020] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPUpdateDelegator.cs:171 ","ctxs":[{"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658810269080,"ll":"Verbose","bh":1}
    126. 2022-01-21 12:44:41,036 INFO  {"tid":1,"div":"HubConnection","msg":"SetState - from State: 'Negotiating' to State: 'Closed', errorReason: 'Handshake Request finished Successfully, but the server sent an error. Status Code: 404-Not Found Message: No Connection with that ID', allowReconnect: True","stack":"  at SignalRCore.HubConnection.SetState (SignalRCore.ConnectionStates state, System.String errorReason, System.Boolean allowReconnect) [0x00046] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\HubConnection.cs:1108   at SignalRCore.HubConnection.Transport_OnStateChanged (SignalRCore.TransportStates oldState, SignalRCore.TransportStates newState) [0x00181] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\HubConnection.cs:1056   at SignalRCore.Transports.TransportBase.set_State (SignalRCore.TransportStates value) [0x0002d] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\Transports\\TransportBase.cs:30   at SignalRCore.Transports.LongPollingTransport.OnHandshakeRequestFinished (HTTPRequest req, HTTPResponse resp) [0x000ea] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\SignalRCore\\Transports\\LongPollingTransport.cs:211   at Core.RequestEventHelper.HandleRequestStateChange (Core.RequestEventInfo event) [0x00259] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:345   at Core.RequestEventHelper.ProcessQueue () [0x002f8] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:224   at HTTPManager.OnUpdate () [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPManager.cs:414   at HTTPUpdateDelegator.Update () [0x00020] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPUpdateDelegator.cs:171 ","ctxs":[{"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658810304960,"ll":"Information","bh":1}
    127. 2022-01-21 12:44:41,089 ERROR [ContactsHub] ConnectToServer: Error during signalR connexion Handshake Request finished Successfully, but the server sent an error. Status Code: 404-Not Found Message: No Connection with that ID
    128. 2022-01-21 12:44:41,099 INFO  {"tid":1,"div":"RequestEventHelper","msg":"Finishing request. Timings: [TimingCollector Start: '12:44:39' \n['Queued': 00:00:00.0243290]\n['DNS Lookup': 00:00:00.0499200]\n['TCP Connection': 00:00:00.0499660]\n['TLS Negotiation': 00:00:00.6880270]\n['Request Sent': 00:00:00.1530240]\n['Waiting (TTFB)': 00:00:00.0692760]\n['Headers': 00:00:00.0941250]\n['Response Received': 00:00:00.0144960]\n['Queued for Dispatch': 00:00:00.0079260]\n['Finished in': 00:00:01.1706110]\n['Callback': 00:00:00.0698600]]","stack":"  at Core.RequestEventHelper.HandleRequestStateChange (Core.RequestEventInfo event) [0x002a7] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:350   at Core.RequestEventHelper.ProcessQueue () [0x002f8] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\RequestEvents.cs:224   at HTTPManager.OnUpdate () [0x00001] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPManager.cs:414   at HTTPUpdateDelegator.Update () [0x00020] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPUpdateDelegator.cs:171 ","ctxs":[{"TypeName": "HTTPRequest", "Hash": 535028672}, {"TypeName": "LongPollingTransport", "Hash": -1004655168}, {"TypeName": "HubConnection", "Hash": -1663338496}],"t":637783658810947190,"ll":"Information","bh":1}
    129. 2022-01-21 12:44:41,108 INFO  {"tid":1,"div":"ConnectionEventHelper","msg":"Processing connection event: [ConnectionEventInfo SourceConnection: [2068060416:https:\/\/xxxxxx.azurewebsites.net:443], Event: StateChange, State: Recycle, ProtocolSupport: Unknown]","stack":"  at Core.ConnectionEventHelper.ProcessQueue () [0x00018] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\Core\\ConnectionEvents.cs:113   at HTTPManager.OnUpdate () [0x00007] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPManager.cs:415   at HTTPUpdateDelegator.Update () [0x00020] in D:\\.....\\Assets\\ThirdParty\\Best HTTP\\Source\\HTTPUpdateDelegator.cs:171 ","ctxs":[{"TypeName": "HTTPConnection", "Hash": 2068060416, "ServerAddress": "https:\/\/xxxxxx.azurewebsites.net:443", "Threaded": true, "RequestHandler": 1183231488}],"t":637783658810968430,"ll":"Information","bh":1}
    130.  

    Do you have any idea why the connection could fail, only sometimes ?

    Thanks in advance, let me know if you need more info

    EDIT : the "404-Not Found Message" was thrown because the Websocket connection failed, so it was trying Long Polling, which was not accepted on the server.
    We tried setting a higher ConnectionTimeout, and we got :

    {"tid":1,"div":"HubConnection","msg":"SetState - from State: 'Negotiating' to State: 'Closed', errorReason: 'Couldn't connect in the given time(00:01:00)!', allowReconnect: True"

    So the question remaining is, why would the websocket connection fail, and sometimes not ?
     
    Last edited: Jan 24, 2022
  26. BestHTTP

    BestHTTP

    Joined:
    Sep 11, 2013
    Posts:
    1,664
    @TheFluffyMane As i see the websocket request times out while waiting for the server's response to finish the TLS handshake:

    Why the server doesn't complete the handshake? That's a good question. Might be a connection error as TCP can detect if it can send data, but the client was in a state where it doesn't sent any.
     
  27. DefiniteDevelopers

    DefiniteDevelopers

    Joined:
    Aug 23, 2016
    Posts:
    4
    Hi is Socket.io 4.x Supported on this plugin, is it possible to use the same methods and classes for socket.io 4.x?
     
  28. BestHTTP

    BestHTTP

    Joined:
    Sep 11, 2013
    Posts:
    1,664
  29. hieutran196

    hieutran196

    Joined:
    Dec 17, 2018
    Posts:
    21
    Hi, I can't connect to server which using socket io4.
    I register event SocketIOEventTypes.Error but doesn't know how to show error in function, too few examples.
    I can connect with nodeJs client but with Unity I can't.
    Please help.
    Code (CSharp):
    1.  
    2.         SocketOptions options = new SocketOptions();
    3.         options.Reconnection = true;
    4.         options.AutoConnect = false;
    5.         socketManager = new SocketManager(new Uri(SOCKET_URL()), options);
    6.         socketManager.Socket.On<ConnectResponse>(SocketIOEventTypes.Connect, OnConnected);
    7.         socketManager.Socket.On(SocketIOEventTypes.Disconnect, OnDisconnected);
    8.         socketManager.Socket.On(SocketIOEventTypes.Error, OnError);
    9.         socketManager.Open();
     

    Attached Files:

  30. hieutran196

    hieutran196

    Joined:
    Dec 17, 2018
    Posts:
    21
    I tested connect with localhost, it works well, but with wss it throw this error.
    Is there any idea :'(
     
  31. hieutran196

    hieutran196

    Joined:
    Dec 17, 2018
    Posts:
    21
  32. BestHTTP

    BestHTTP

    Joined:
    Sep 11, 2013
    Posts:
    1,664
    @hieutran196 Firstly, are you sure your server has is listening on port 443? That's the one for secure connections (wss:// is like https://).
    Secondly, you should use http:// or https:// in your url, the plugin will decide what to use depending on the state of the protocol (by default it starts with http(s) and if websocket is available will try to switch to ws(s)).
     
  33. dhruv_unity154

    dhruv_unity154

    Joined:
    Feb 11, 2022
    Posts:
    14
    Hello All,
    I am facing an issue related to the socket io. When the app starts socket connection is established and listen to the event properly. But after a few seconds(after 30-40 seconds) socket not listening any events.

    Does anyone have idea?
     
  34. BestHTTP

    BestHTTP

    Joined:
    Sep 11, 2013
    Posts:
    1,664
  35. Serhii-Horun

    Serhii-Horun

    Joined:
    Apr 12, 2015
    Posts:
    151
    Hi @BestHTTP !

    We bought the TLS Security asset, but couldn't found how to setup/use "Domain Name Matching" feature. Could you help?
     
  36. BestHTTP

    BestHTTP

    Joined:
    Sep 11, 2013
    Posts:
    1,664
    @Serhii-Horun No need to setup, it's done automatically. You have to call
    Code (CSharp):
    1. TLSSecurity.Setup();
    somewhere in your startup code only.
     
    Serhii-Horun likes this.
  37. Serhii-Horun

    Serhii-Horun

    Joined:
    Apr 12, 2015
    Posts:
    151
    But if we want to use/check root Amazon certificates, where our servers are running, and be sure that we are talking with out server host, how can we achieve that? In other words, we want to check whether our request has root Amazon certificate and host is our?
     
  38. BestHTTP

    BestHTTP

    Joined:
    Sep 11, 2013
    Posts:
    1,664
    @Serhii-Horun

    The client tries to connect to xyz.com, the server (at minimum) sends back the leaf certificate. All leaf certificates has an entry for who signed it, up until the root certificate.
    The plugin checks
    1.) signing the leaf certificate with its own (considered) trusted certificates is the same as it received.
    2.) the domain list in the leaf certificate's Subject Alternative Name or Common Name fields are matching the domain that the plugin tries to connect.

    So, a leaf certificate must be made for the domain it tries to connect (the cert might be a wildcard cert too, that's fine too) and must come from a trusted source.

    Certificates made for another domain will fail. Certificates signed by an untrusted root will fail.
     
    Serhii-Horun likes this.
  39. vuthang

    vuthang

    Joined:
    Mar 7, 2017
    Posts:
    50
    Hi Support, how I can setup TCP_QUICKACK for websocket?
     
  40. sebascore

    sebascore

    Joined:
    Apr 27, 2022
    Posts:
    22
    Hi, I want to move the WebSocket SendPing to another thread and send it regularly independently from the other messages being posted or not. I have an idea about how to do it, SendPing itself seems already to be thread-safe. Any problem with just calling it from another thread?

    By the way, the code is confusing on this subject. This would make me think that the functionality is already present:

    public bool StartPingThread { get; set; }

    but I don't see any thread actually running, as the heartbeat where the SendPing is called from is called from a monobehaviour update.
     
    Last edited: Jun 20, 2022
  41. sebascore

    sebascore

    Joined:
    Apr 27, 2022
    Posts:
    22
    I would like to understand why BestHTTP implements websockets overHTTP2 only when wss is used. In a local environment we use ws (while in production we use wss), what is the suggested way to be able to test the same code implementation locally and in production?
     
  42. BestHTTP

    BestHTTP

    Joined:
    Sep 11, 2013
    Posts:
    1,664
    @vuthang Currently you can't. If you want to experiment with it, you can add it manually to the TcpClient.cs around lines 490.
     
  43. BestHTTP

    BestHTTP

    Joined:
    Sep 11, 2013
    Posts:
    1,664
    @sebascore The StartPingThread is a backward compatible name, its implementation is changed but kept the name.

    It should be safe to call SendPing from another thread.

    why BestHTTP implements websockets overHTTP2 only when wss is used

    HTTP/2 is used only through a secure connection, so checking for support for Websocket Over HTTP/2 is done only when the websocket connection must be over a secure connection too.
     
    sebascore likes this.
  44. vuthang

    vuthang

    Joined:
    Mar 7, 2017
    Posts:
    50
    Can I setup websocket run in UDP instead of TCP?
     
  45. BestHTTP

    BestHTTP

    Joined:
    Sep 11, 2013
    Posts:
    1,664
  46. vuthang

    vuthang

    Joined:
    Mar 7, 2017
    Posts:
    50
    Thanks for support!
     
  47. naagi

    naagi

    Joined:
    Nov 27, 2014
    Posts:
    13
    @BestHTTP Hi, I'm using the BestHTTP2 asset for my game, so far the pc and android version does not have any problem, but when I try to build the WebGL version of my game I got some problem

    1. I always get this error c0234 saying BestHTTP SecureProtocol namespace does not exist
    2. Can we use TCPConnection with WebGL build?

    can you help me please

    below I attach my error ss
    upload_2022-8-12_14-11-3.png
     
  48. BestHTTP

    BestHTTP

    Joined:
    Sep 11, 2013
    Posts:
    1,664
    @naagi No. When compiled for WebGL, BouncyCastle(the SecureProtocol under BestHTTP) and all tcp based connections are disabled and won't compiled into the build.
     
  49. naagi

    naagi

    Joined:
    Nov 27, 2014
    Posts:
    13
    @BestHTTP Thank you for the reply, but is there anyway to work around it and make it work?

    we are using it a lot to build many parts of our game connection system, we cannot just simply changing it with other product
     
  50. BestHTTP

    BestHTTP

    Joined:
    Sep 11, 2013
    Posts:
    1,664
    @naagi BouncyCastle would work, but you can't do raw TCP from a browser.