|
@@ -29,6 +29,8 @@ namespace SCSI
|
|
|
|
|
|
public event EventHandler<StandardInquiryEventArgs> OnStandardInquiry;
|
|
|
|
|
|
+ public event EventHandler<UnitSerialNumberInquiryEventArgs> OnUnitSerialNumberInquiry;
|
|
|
+
|
|
|
public event EventHandler<DeviceIdentificationInquiryEventArgs> OnDeviceIdentificationInquiry;
|
|
|
|
|
|
public SCSITarget()
|
|
@@ -78,6 +80,16 @@ namespace SCSI
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ public void NotifyUnitSerialNumberInquiry(object sender, UnitSerialNumberInquiryEventArgs args)
|
|
|
+ {
|
|
|
+ // To be thread-safe we must capture the delegate reference first
|
|
|
+ EventHandler<UnitSerialNumberInquiryEventArgs> handler = OnUnitSerialNumberInquiry;
|
|
|
+ if (handler != null)
|
|
|
+ {
|
|
|
+ handler(sender, args);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
public void NotifyDeviceIdentificationInquiry(object sender, DeviceIdentificationInquiryEventArgs args)
|
|
|
{
|
|
|
// To be thread-safe we must capture the delegate reference first
|