2025-03-28 09:49:56 +08:00

28 lines
732 B
C#

using BreakpointTransmission.Service.Entry;
using BreakpointTransmission.Service.Plugin;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace PackUploadRelease
{
[Serializable]
public class Plugin : IBreakpointAcceptFileHandler
{
public void Init(HttpContext context, RequestParameterEntry parameter)
{
//throw new NotImplementedException();
}
public void PreProcess(BreakpointEntry entry)
{
//throw new NotImplementedException();
}
public void Process(byte[] buffer, long startPosition, int offset, int readSize)
{
//throw new NotImplementedException();
}
}
}