123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using Utilities;
- namespace SMBLibrary.SMB1
- {
-
-
-
- public class TransactionTransactNamedPipeResponse : TransactionSubcommand
- {
- public const int ParametersLength = 0;
-
- public byte[] ReadData;
- public TransactionTransactNamedPipeResponse() : base()
- {
- }
- public TransactionTransactNamedPipeResponse(byte[] data) : base()
- {
- ReadData = data;
- }
- public override byte[] GetData(bool isUnicode)
- {
- return ReadData;
- }
- public override TransactionSubcommandName SubcommandName
- {
- get
- {
- return TransactionSubcommandName.TRANS_TRANSACT_NMPIPE;
- }
- }
- }
- }
|