CommandDescriptor.cs declarations
Public API declaration excerpts from ../bitquirky-command/Runtime/CommandDescriptor.cs.
Source snapshot ad0983d00d77.
On this page
Original file: ../bitquirky-command/Runtime/CommandDescriptor.cs
Source file hash: sha256:b23119907ad71dfce83d7881a54a77c2a438afadbbd813e7efe9c28e5727c794
Only public declaration headers are shown. Implementation bodies, non-public code, and source comments are omitted.
Type: CommandDescriptor
Section titled “Type: CommandDescriptor”Original lines: 22-145
Declaration hash: sha256:251d621425adaccf25217511c6cea0be6b78ef2f4b927c0f16b90bf5b5bc8d9c
public sealed class CommandDescriptor{}Property: FullName
Section titled “Property: FullName”Original lines: 25
Declaration hash: sha256:084ac85e7cffdeb0c2ef3a9fcbf69d6f142858ed1df7521f31dc45a70be5c3e6
public string FullName { get; }Property: Domain
Section titled “Property: Domain”Original lines: 28
Declaration hash: sha256:f231af4bf29538792eaae61bb831ba6223ba9c88ff286395cfb9246a889e5f29
public string Domain { get; }Property: Verb
Section titled “Property: Verb”Original lines: 31
Declaration hash: sha256:14e45d82cf15e2be77ba315910e7a1e4ac3f8cc993e1f3adee1059ddbe9c36db
public string Verb { get; }Property: Description
Section titled “Property: Description”Original lines: 34
Declaration hash: sha256:4bafaadec5ed0b05dfab8e221774d7ee998ae966e03f56304e1ad5b023bd0a06
public string Description { get; }Property: Target
Section titled “Property: Target”Original lines: 37
Declaration hash: sha256:37b281cd7987378450d2b94d4b36c4d6c235249fab944c28db0894bdee07e39a
public object Target { get; }Property: Method
Section titled “Property: Method”Original lines: 40
Declaration hash: sha256:9733f7396ff46f5fed0a803d2df748dbbea2d6b3831b4c6485dcfeb639f7697e
public MethodInfo Method { get; }Property: Parameters
Section titled “Property: Parameters”Original lines: 43
Declaration hash: sha256:465dc5c30fcf27675b251c5885a5022f8743befd0f9c87a3dfccbae7716bb886
public IReadOnlyList<CommandParameter> Parameters { get; }Property: RequiredParameterCount
Section titled “Property: RequiredParameterCount”Original lines: 46
Declaration hash: sha256:4cb290f6ada18b5ef726303246e8721c5d679f3fae7de645051ee6ccfc052399
public int RequiredParameterCount { get; }Property: Signature
Section titled “Property: Signature”Original lines: 52
Declaration hash: sha256:6274a81b0fbc4cc8f08882bd9ed51c53c67ee9f93a198dd798edc4431f6e9dc7
public string Signature { get; }Method: CommandDescriptor(string domain, string verb, string description, object target, MethodInfo method, IReadOnlyList<CommandParameter> parameters)
Section titled “Method: CommandDescriptor(string domain, string verb, string description, object target, MethodInfo method, IReadOnlyList<CommandParameter> parameters)”Original lines: 64-89
Declaration hash: sha256:23d88b76341119729aea39a17e50fb5b0930655d97ef4ec08053076eeb070f09
public CommandDescriptor(string domain, string verb, string description, object target, MethodInfo method, IReadOnlyList<CommandParameter> parameters);Method: AcceptsArgumentCount(int argumentCount)
Section titled “Method: AcceptsArgumentCount(int argumentCount)”Original lines: 92-95
Declaration hash: sha256:0f0110608debda71561688579ce25c19556de0c608d05d0bd6cb97a3c030d23f
public bool AcceptsArgumentCount(int argumentCount);