[성현모] VPKI 반복 테스트 코드 수정

This commit is contained in:
SHM
2025-04-29 15:31:31 +09:00
parent 6f708d55fd
commit f62f74fa44
17 changed files with 219 additions and 90 deletions

View File

@ -15,7 +15,7 @@ namespace SystemX.Core.Communication
/// </summary>
/// <param name="url">https://127.0.0.1:443</param>
/// <param name="timeOutSeconds">Range 5~30 secconds</param>
public virtual async Task<RESPONSE?> PostJsonAsync<REQUEST, RESPONSE>(string url, REQUEST request, string bearerToken = "", short timeOutSeconds = 5) where REQUEST : class where RESPONSE : class
public virtual async Task<RESPONSE?> PostJsonAsync<REQUEST, RESPONSE>(string url, REQUEST request, string bearerToken = "", short timeOutSeconds = 10) where REQUEST : class where RESPONSE : class
{
RESPONSE? response = default(RESPONSE);
Guid guid = Guid.NewGuid();