12345678910111213141516171819202122232425262728293031323334353637383940 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using Utilities;
- namespace SMBLibrary.SMB1
- {
-
-
-
- public class SetInformationResponse : SMB1Command
- {
- public SetInformationResponse() : base()
- {
- }
- public SetInformationResponse(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_SET_INFORMATION;
- }
- }
- }
- }
|