Skip to content

interface IConfigureAfterOptions

cangjie
public interface IConfigureAfterOptions<TOptions> where TOptions <: Object

功能:定义在基础配置之后执行附加配置的接口。

成员概览

成员功能
func configureAfter(?String, TOptions)在基础配置完成后配置指定名称的选项实例。

func configureAfter(?String, TOptions)

cangjie
func configureAfter(name: ?String, options: TOptions): Unit

功能:在基础配置完成后配置指定名称的选项实例。

参数:

  • name: ?String - 选项名称。
  • options: TOptions - 待配置的选项实例。

返回值:

  • Unit