12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using Utilities;
- namespace SMBLibrary.SMB1
- {
-
-
-
-
-
- public class CreateDirectoryResponse : SMB1Command
- {
- public CreateDirectoryResponse() : base()
- {
- }
- public CreateDirectoryResponse(byte[] buffer, int offset) : base(buffer, offset, false)
- {
- }
- public override CommandName CommandName
- {
- get
- {
- return CommandName.SMB_COM_CREATE_DIRECTORY;
- }
- }
- }
- }
|