123456789101112131415161718192021222324252627282930313233343536373839 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace SMBLibrary.SMB1
- {
-
-
-
- public class DeleteResponse : SMB1Command
- {
- public DeleteResponse() : base()
- {
- }
- public DeleteResponse(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_DELETE;
- }
- }
- }
- }
|