12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- using Utilities;
- namespace SMBLibrary.SMB1
- {
- public class Transaction2InterimResponse : TransactionInterimResponse
- {
- public Transaction2InterimResponse() : base()
- {
- }
- public Transaction2InterimResponse(byte[] buffer, int offset) : base(buffer, offset)
- {
- }
- public override CommandName CommandName
- {
- get
- {
- return CommandName.SMB_COM_TRANSACTION2;
- }
- }
- }
- }
|