IHostEnvironment 接口

定义

主机环境接口为组件创建主机。 请注意,应从环境的主线程调用此接口的方法。 若要获取环境来服务另一个线程,请调用 Fork 并将返回结果传递给该线程。

public interface IHostEnvironment : Microsoft.ML.Runtime.IChannelProvider, Microsoft.ML.Runtime.IProgressChannelProvider
type IHostEnvironment = interface
    interface IChannelProvider
    interface IExceptionContext
    interface IProgressChannelProvider
Public Interface IHostEnvironment
Implements IChannelProvider, IProgressChannelProvider
派生
实现

属性

ComponentCatalog

可加载组件目录 (Microsoft.ML.LoadableClassAttribute 此主机中可用的) 。

ContextDescription

描述上下文本身的字符串。

(继承自 IExceptionContext)

方法

Process<TException>(TException)

主机环境接口为组件创建主机。 请注意,应从环境的主线程调用此接口的方法。 若要获取环境来服务另一个线程,请调用 Fork 并将返回结果传递给该线程。

(继承自 IExceptionContext)
Register(String, Nullable<Int32>, Nullable<Boolean>)

创建具有给定注册名称的主机。

Start(String)

启动标准消息通道。

(继承自 IChannelProvider)
StartPipe<TMessage>(String)

启动泛型信息管道。

(继承自 IChannelProvider)
StartProgressChannel(String)

为名为 name 的计算创建进度通道。

(继承自 IProgressChannelProvider)

适用于