Command.providesAs

see also Self provides(string name, string[] rest...). this member function are used for register an option to be exposed as an new name. this is usually used when you want to avoid name confilict.

  1. Self providesAs(string name, string asName)
    class Command
    providesAs
    (
    in string name
    ,
    in string asName
    )
  2. Self providesAs(string[string] optsMap)

Parameters

name string

the name of option to be exposed

asName string

the new name of option to be exposed

Return Value

Type: Self

Self for chain call

Meta