HTTP Options
Get
Get a single option of the service:
crudService.getOption(name : keyof Options) : Options[keyof Options]Get the options of the service:
crudService.getOptions() : OptionsSet
Set a single option of the service:
crudService.setOption(name : keyof Options, value : Options[keyof Options]) : thisSet the options of the service:
crudService.setOptions(options : Options) : thisClear
Clear a single option of the service:
crudService.clearOption(name : keyof Options) : thisClear the options of the service:
crudService.clearOptions() : thisLast updated