1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using Utilities;
- namespace SMBLibrary.SMB1
- {
-
-
-
- public class TransactionSetNamedPipeStateResponse : TransactionSubcommand
- {
- public const int ParametersLength = 0;
- public override TransactionSubcommandName SubcommandName
- {
- get
- {
- return TransactionSubcommandName.TRANS_SET_NMPIPE_STATE;
- }
- }
- }
- }
|