Show / Hide Table of Contents

Class BoundCommand

Inheritance
object
BoundCommand
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: SlipeServer.LuaControllers.Commands
Assembly: SlipeServer.LuaControllers.dll
Syntax
public class BoundCommand

Constructors

| Edit this page View Source

BoundCommand(IServiceProvider, string, Type, MethodInfo, BaseCommandController?)

Declaration
public BoundCommand(IServiceProvider serviceProvider, string command, Type controllerType, MethodInfo method, BaseCommandController? controllerInstance)
Parameters
Type Name Description
IServiceProvider serviceProvider
string command
Type controllerType
MethodInfo method
BaseCommandController controllerInstance

Properties

| Edit this page View Source

Command

Declaration
public string Command { get; set; }
Property Value
Type Description
string
| Edit this page View Source

ControllerInstance

Declaration
public BaseCommandController? ControllerInstance { get; set; }
Property Value
Type Description
BaseCommandController
| Edit this page View Source

ControllerType

Declaration
public Type ControllerType { get; set; }
Property Value
Type Description
Type
| Edit this page View Source

Method

Declaration
public MethodInfo Method { get; set; }
Property Value
Type Description
MethodInfo
| Edit this page View Source

ServiceProvider

Declaration
public IServiceProvider ServiceProvider { get; }
Property Value
Type Description
IServiceProvider

Methods

| Edit this page View Source

HandleCommand(Player, string, IEnumerable<object?>)

Declaration
public void HandleCommand(Player player, string command, IEnumerable<object?> args)
Parameters
Type Name Description
Player player
string command
IEnumerable<object> args
  • Edit this page
  • View Source
In this article
Back to top Generated by DocFX