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