1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Collections.Generic;
- using Utilities;
- namespace SMBLibrary.SMB1
- {
-
-
-
- public class TransactionInterimResponse : SMB1Command
- {
- public const int ParametersLength = 0;
- public TransactionInterimResponse() : base()
- {
- }
- public TransactionInterimResponse(byte[] buffer, int offset) : base(buffer, offset, false)
- {
- }
- public override byte[] GetBytes(bool isUnicode)
- {
- return base.GetBytes(isUnicode);
- }
- public override CommandName CommandName
- {
- get
- {
- return CommandName.SMB_COM_TRANSACTION;
- }
- }
- }
- }
|