12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using Utilities;
- namespace SMBLibrary.SMB1
- {
-
-
-
-
-
- public class Transaction2Request : TransactionRequest
- {
- public Transaction2Request() : base()
- {
- }
- public Transaction2Request(byte[] buffer, int offset, bool isUnicode) : base(buffer, offset, isUnicode)
- {
- }
- public override CommandName CommandName
- {
- get
- {
- return CommandName.SMB_COM_TRANSACTION2;
- }
- }
- }
- }
|