@loopback/docs
Version:
Documentation files rendered at [https://loopback.io](https://loopback.io)
36 lines (24 loc) • 1.01 kB
Markdown
lang: en
title: 'API docs: context.inject.tag'
keywords: LoopBack 4.0, LoopBack 4, Node.js, TypeScript, OpenAPI
sidebar: lb4_sidebar
editurl: https://github.com/loopbackio/loopback-next/tree/master/packages/context
permalink: /doc/en/lb4/apidocs.context.inject.tag.html
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) > [@loopback/context](./context.md) > [inject](./context.inject.md) > [tag](./context.inject.tag.md)
## inject.tag variable
Inject an array of values by a tag pattern string or regexp
<b>Signature:</b>
```typescript
tag: (bindingTag: BindingTag | RegExp, metadata?: InjectionMetadata | undefined) => (target: Object, member: string | undefined, methodDescriptorOrParameterIndex?: number | TypedPropertyDescriptor<any> | undefined) => void
```
## Example
```ts
class AuthenticationManager {
constructor(
@inject.tag('authentication.strategy') public strategies: Strategy[],
) {}
}
```