// Copyright (C) 2020 White Sharx (https://whitesharx.com) - All Rights Reserved. // Unauthorized copying of this file, via any medium is strictly prohibited. // Proprietary and confidential. // using System.Collections.Generic; using UnityEngine.Networking; namespace Httx.Requests.Executors { public class Head : As>> { public Head(string url) : base(null) { Url = url; } public override string Url { get; } public override string Verb => UnityWebRequest.kHttpVerbHEAD; } }