1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using Utilities;
- namespace SMBLibrary.SMB1
- {
-
-
-
-
- public class ErrorResponse : SMB1Command
- {
- private CommandName m_commandName;
- public ErrorResponse(CommandName commandName) : base()
- {
- m_commandName = commandName;
- }
- public override CommandName CommandName
- {
- get
- {
- return m_commandName;
- }
- }
- }
- }
|