12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using SuperSocket.SocketBase;
- using SuperSocket.SocketBase.Command;
- namespace SuperSocket.SocketBase.Metadata
- {
-
-
-
- [AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
- public abstract class CommandFilterAttribute : Attribute
- {
-
-
-
-
-
-
- public int Order { get; set; }
-
-
-
-
- public abstract void OnCommandExecuting(CommandExecutingContext commandContext);
-
-
-
-
- public abstract void OnCommandExecuted(CommandExecutingContext commandContext);
- }
- }
|