28 lines
732 B
C#
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();
|
|
}
|
|
}
|
|
} |