Class CommandsHandlerProviderResult
Represents a handler search result for handler provider.
Implements
Namespace: TehGM.Wolfringo.Commands.Initialization
Assembly: Wolfringo.Commands.dll
Syntax
public class CommandsHandlerProviderResult : ICommandsHandlerProviderResult
Constructors
| Improve this Doc View SourceCommandsHandlerProviderResult(ICommandHandlerDescriptor, Object)
Creates a new handler provider result.
Declaration
public CommandsHandlerProviderResult(ICommandHandlerDescriptor descriptor, object handler)
Parameters
Type | Name | Description |
---|---|---|
ICommandHandlerDescriptor | descriptor | Descriptor of the handler. |
Object | handler | Initialized instance of the handler. |
Properties
| Improve this Doc View SourceDescriptor
Descriptor of the handler.
Declaration
public ICommandHandlerDescriptor Descriptor { get; }
Property Value
Type | Description |
---|---|
ICommandHandlerDescriptor |
HandlerInstance
Initialized instance of the handler.
Declaration
public object HandlerInstance { get; }
Property Value
Type | Description |
---|---|
Object |