FindClose2Response.cs 597 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using Utilities;
  5. namespace SMBLibrary.SMB1
  6. {
  7. /// <summary>
  8. /// SMB_COM_FIND_CLOSE2 Response
  9. /// </summary>
  10. public class FindClose2Response : SMB1Command
  11. {
  12. public FindClose2Response() : base()
  13. {
  14. }
  15. public FindClose2Response(byte[] buffer, int offset) : base(buffer, offset, false)
  16. {
  17. }
  18. public override CommandName CommandName
  19. {
  20. get
  21. {
  22. return CommandName.SMB_COM_FIND_CLOSE2;
  23. }
  24. }
  25. }
  26. }