using System; using System.Collections.Generic; using System.Text; using Utilities; namespace SMBLibrary.SMB1 { /// /// SMB_COM_FIND_CLOSE2 Response /// 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; } } } }