17 lines
416 B
C#
17 lines
416 B
C#
namespace Common.Hardware.SIRT.Tasks
|
|
{
|
|
using Common.Hardware.SIRT.Parameters;
|
|
|
|
public class DeleteFromPamPoolTask : SIRTTask
|
|
{
|
|
public DeleteFromPamPoolTask()
|
|
{
|
|
this.request.Command = SIRTConstants.W_PAM;
|
|
this.request.P1 = new P811 { DelPamAdr = true };
|
|
}
|
|
|
|
public override void Receive(SIRTMessage _)
|
|
=> this.SetCompleted();
|
|
}
|
|
}
|