1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using Utilities;
- namespace SMBLibrary.SMB1
- {
- /// <summary>
- /// SMB_COM_FIND_CLOSE2 Response
- /// </summary>
- public class FindClose2Response : SMB1Command
- {
- public FindClose2Response() : base()
- {
- }
- public FindClose2Response(byte[] buffer, int offset) : base(buffer, offset, false)
- {
- }
- public override CommandName CommandName
- {
- get
- {
- return CommandName.SMB_COM_FIND_CLOSE2;
- }
- }
- }
- }
|