ComponentRegistrationBridge<TComponent>.GetFromComponent<TRegistration> 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
对 BotComponent 调用启动以检索类型 TRegistration
的注册集合。
protected System.Collections.Generic.IEnumerable<TRegistration> GetFromComponent<TRegistration> (Microsoft.Extensions.DependencyInjection.IServiceCollection services = default);
member this.GetFromComponent : Microsoft.Extensions.DependencyInjection.IServiceCollection -> seq<'Registration>
Protected Function GetFromComponent(Of TRegistration) (Optional services As IServiceCollection = Nothing) As IEnumerable(Of TRegistration)
类型参数
- TRegistration
要从 获取的 BotComponent注册类型。
参数
- services
- IServiceCollection
要传递给 的BotComponent可选初始IServiceCollection值。 如果未提供,则使用空 ServiceCollection 。
返回
IEnumerable<TRegistration>
应用的BotComponent注册集合TRegistration
。