12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using Utilities;
- namespace SMBLibrary.SMB1
- {
-
-
-
- public class TransactionCallNamedPipeResponse : TransactionSubcommand
- {
-
- public byte[] ReadData;
- public TransactionCallNamedPipeResponse() : base()
- {}
- public TransactionCallNamedPipeResponse(byte[] data) : base()
- {
- ReadData = data;
- }
- public override byte[] GetData()
- {
- return ReadData;
- }
- public override TransactionSubcommandName SubcommandName
- {
- get
- {
- return TransactionSubcommandName.TRANS_CALL_NMPIPE;
- }
- }
- }
- }
|