Files
g.hnyhua.cn/COSXML/Network/HttpTask.cs
2026-02-07 15:48:27 +08:00

24 lines
705 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using COSXML.Model;
using System;
using System.Collections.Generic;
using System.Text;
/* ==============================================================================
* Copyright 2016-2019 Tencent Cloud. All Rights Reserved.
* Authbradyxiao
* Date2019/4/4 16:49:33
* ==============================================================================*/
namespace Tencent.QCloud.Cos.Sdk.Network
{
public class HttpTask
{
internal CosRequest cosRequest;
internal CosResult cosResult;
internal bool isSchedue = false;
internal COSXML.Callback.OnSuccessCallback<CosResult> successCallback;
internal COSXML.Callback.OnFailedCallback failCallback;
}
}