mirror of
https://github.com/Cysharp/UniTask.git
synced 2026-05-15 03:20:16 +00:00
Add UnityWebRequestException.ResponseHeaders #198
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
#if ENABLE_UNITYWEBREQUEST
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine.Networking;
|
||||
|
||||
namespace Cysharp.Threading.Tasks
|
||||
@@ -17,6 +18,7 @@ namespace Cysharp.Threading.Tasks
|
||||
public string Error { get; }
|
||||
public string Text { get; }
|
||||
public long ResponseCode { get; }
|
||||
public Dictionary<string, string> ResponseHeaders { get; }
|
||||
|
||||
string msg;
|
||||
|
||||
@@ -38,6 +40,7 @@ namespace Cysharp.Threading.Tasks
|
||||
this.Text = dhb.text;
|
||||
}
|
||||
}
|
||||
this.ResponseHeaders = unityWebRequest.GetResponseHeaders();
|
||||
}
|
||||
|
||||
public override string Message
|
||||
|
||||
@@ -577,8 +577,8 @@ public class SandboxMain : MonoBehaviour
|
||||
StartCoroutine(LastYieldCore());
|
||||
|
||||
Debug.Log("BEFORE:" + Time.frameCount);
|
||||
|
||||
await UniTask.Yield(PlayerLoopTiming.LastTimeUpdate);
|
||||
|
||||
// await UniTask.Yield(PlayerLoopTiming.LastTimeUpdate);
|
||||
|
||||
Debug.Log("AFTER:" + Time.frameCount);
|
||||
}));
|
||||
|
||||
Reference in New Issue
Block a user