17 lines
391 B
C#
17 lines
391 B
C#
using LightSetupBase;
|
|
|
|
namespace LightSetupMd5
|
|
{
|
|
internal class Md5HttpPost
|
|
{
|
|
|
|
internal void Request(Md5MainArgs arg, Md5Config config, Dictionary<string, string> extendPara)
|
|
{
|
|
if (!arg.Post)
|
|
{
|
|
return;
|
|
}
|
|
Md5HttpRequest.Request(config.PostHttpUrl, config.PostHttpFormat, extendPara);
|
|
}
|
|
}
|
|
} |