Add UnityWebRequestException.ResponseHeaders #198

master
neuecc 2021-01-07 16:03:27 +09:00
parent 908e361985
commit 5ced0a1d4b
2 changed files with 5 additions and 2 deletions

View File

@ -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

View File

@ -578,7 +578,7 @@ public class SandboxMain : MonoBehaviour
Debug.Log("BEFORE:" + Time.frameCount);
await UniTask.Yield(PlayerLoopTiming.LastTimeUpdate);
// await UniTask.Yield(PlayerLoopTiming.LastTimeUpdate);
Debug.Log("AFTER:" + Time.frameCount);
}));